summaryrefslogtreecommitdiff
path: root/src/components/application_manager/include/application_manager/app_launch/device_apps_launcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/application_manager/include/application_manager/app_launch/device_apps_launcher.h')
-rw-r--r--src/components/application_manager/include/application_manager/app_launch/device_apps_launcher.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/application_manager/include/application_manager/app_launch/device_apps_launcher.h b/src/components/application_manager/include/application_manager/app_launch/device_apps_launcher.h
index 2a6cdb0745..f156654215 100644
--- a/src/components/application_manager/include/application_manager/app_launch/device_apps_launcher.h
+++ b/src/components/application_manager/include/application_manager/app_launch/device_apps_launcher.h
@@ -29,7 +29,7 @@ class DeviceAppsLauncherImpl {
struct LauncherFinder {
LauncherFinder(const std::string& device_mac) : device_mac_(device_mac) {}
- bool operator()(const utils::SharedPtr<Launcher>& launcher) const;
+ bool operator()(const std::shared_ptr<Launcher>& launcher) const;
std::string device_mac_;
};
@@ -38,8 +38,8 @@ class DeviceAppsLauncherImpl {
private:
sync_primitives::Lock launchers_lock_;
- std::vector<utils::SharedPtr<Launcher> > free_launchers_;
- std::vector<utils::SharedPtr<Launcher> > works_launchers_;
+ std::vector<std::shared_ptr<Launcher> > free_launchers_;
+ std::vector<std::shared_ptr<Launcher> > works_launchers_;
DeviceAppsLauncher& interface_;
};