summaryrefslogtreecommitdiff
path: root/src/components/application_manager/include/application_manager/app_launch
diff options
context:
space:
mode:
authorLevchenko <slevchenko@SLevchenko-lws-unq>2016-08-02 15:40:06 +0300
committerLevchenko <slevchenko@SLevchenko-lws-unq>2016-08-05 15:40:21 +0300
commit8b748541cd76a7d4be0dfef5fdaec1c12992d22f (patch)
tree115162a2e23c71c78290aa0699d740d9deaedf16 /src/components/application_manager/include/application_manager/app_launch
parent04ffa4a8fd03009d8ed45e27973c95058c33a549 (diff)
downloadsdl_core-8b748541cd76a7d4be0dfef5fdaec1c12992d22f.tar.gz
Fix coding style
Has been done: - Fixed coding style; - Fixed header guard naming; - Fixed copyright comments. Related to: APPLINK-24892
Diffstat (limited to 'src/components/application_manager/include/application_manager/app_launch')
-rw-r--r--src/components/application_manager/include/application_manager/app_launch/app_launch_sql_queries.h8
-rw-r--r--src/components/application_manager/include/application_manager/app_launch/device_apps_launcher.h8
2 files changed, 8 insertions, 8 deletions
diff --git a/src/components/application_manager/include/application_manager/app_launch/app_launch_sql_queries.h b/src/components/application_manager/include/application_manager/app_launch/app_launch_sql_queries.h
index d70af6bba4..4539b49002 100644
--- a/src/components/application_manager/include/application_manager/app_launch/app_launch_sql_queries.h
+++ b/src/components/application_manager/include/application_manager/app_launch/app_launch_sql_queries.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016, Ford Motor Company
+ * Copyright (c) 2016, Ford Motor Company
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -30,8 +30,8 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef SRC_COMPONENTS_APPLICATION_MANAGER_INCLUDE_APPLICATION_MANAGER_APP_LAUNCH_APP_LAUNCH_SQL_QUERY_H_
-#define SRC_COMPONENTS_APPLICATION_MANAGER_INCLUDE_APPLICATION_MANAGER_APP_LAUNCH_APP_LAUNCH_SQL_QUERY_H_
+#ifndef SRC_COMPONENTS_APPLICATION_MANAGER_INCLUDE_APPLICATION_MANAGER_APP_LAUNCH_APP_LAUNCH_SQL_QUERIES_H_
+#define SRC_COMPONENTS_APPLICATION_MANAGER_INCLUDE_APPLICATION_MANAGER_APP_LAUNCH_APP_LAUNCH_SQL_QUERIES_H_
#include <string>
@@ -48,4 +48,4 @@ extern const std::string kRefreshApplicationDataSessionTime;
} // namespace app_launch
-#endif // SRC_COMPONENTS_APPLICATION_MANAGER_INCLUDE_APPLICATION_MANAGER_APP_LAUNCH_APP_LAUNCH_SQL_QUERY_H_
+#endif // SRC_COMPONENTS_APPLICATION_MANAGER_INCLUDE_APPLICATION_MANAGER_APP_LAUNCH_APP_LAUNCH_SQL_QUERIES_H_
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_;