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.h8
1 files changed, 4 insertions, 4 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 3d1cefe2c3..f1f29471e6 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
@@ -23,17 +23,17 @@ class AppLaunchSettings;
class DeviceAppsLauncher {
public:
DeviceAppsLauncher(application_manager::ApplicationManager& app_mngr,
- app_launch::AppsLauncher& apps_launcher,
- const AppLaunchSettings& settings);
+ app_launch::AppsLauncher& apps_launcher,
+ const AppLaunchSettings& settings);
bool LaunchAppsOnDevice(
const std::string& device_mac,
const std::vector<ApplicationDataPtr>& applications_to_launch);
bool StopLaunchingAppsOnDevice(const std::string& device_mac);
- const AppLaunchSettings &settings() const;
+ const AppLaunchSettings& settings() const;
-private:
+ private:
application_manager::ApplicationManager& app_mngr_;
const AppLaunchSettings& settings_;
std::auto_ptr<DeviceAppsLauncherImpl> impl_;