summaryrefslogtreecommitdiff
path: root/src/components/application_manager/include/application_manager/policies/policy_handler.h
diff options
context:
space:
mode:
authorAndrey Oleynik <aoleynik@luxoft.com>2016-11-29 13:56:54 +0200
committerAlexander Kutsan <AKutsan@luxoft.com>2016-12-05 09:33:20 +0200
commitcf1ae2429ccbc1d59d27e670165343a851379c3f (patch)
treeed8b2611fa50f365874fb4d033b344f2c158f7ef /src/components/application_manager/include/application_manager/policies/policy_handler.h
parent81073829689dd74e314e68b713ae2209200364a2 (diff)
downloadsdl_core-cf1ae2429ccbc1d59d27e670165343a851379c3f.tar.gz
Beautifies with clang-format
Diffstat (limited to 'src/components/application_manager/include/application_manager/policies/policy_handler.h')
-rw-r--r--src/components/application_manager/include/application_manager/policies/policy_handler.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/components/application_manager/include/application_manager/policies/policy_handler.h b/src/components/application_manager/include/application_manager/policies/policy_handler.h
index 38ca3a7210..77f3f060ca 100644
--- a/src/components/application_manager/include/application_manager/policies/policy_handler.h
+++ b/src/components/application_manager/include/application_manager/policies/policy_handler.h
@@ -409,13 +409,13 @@ class PolicyHandler : public PolicyHandlerInterface,
// TODO(AKutsan) REMOVE THIS UGLY HOTFIX
void Increment(usage_statistics::GlobalCounterId type) OVERRIDE;
void Increment(const std::string& app_id,
- usage_statistics::AppCounterId type) OVERRIDE;
+ usage_statistics::AppCounterId type) OVERRIDE;
void Set(const std::string& app_id,
- usage_statistics::AppInfoId type,
- const std::string& value) OVERRIDE;
+ usage_statistics::AppInfoId type,
+ const std::string& value) OVERRIDE;
void Add(const std::string& app_id,
- usage_statistics::AppStopwatchId type,
- int32_t timespan_seconds) OVERRIDE;
+ usage_statistics::AppStopwatchId type,
+ int32_t timespan_seconds) OVERRIDE;
#ifdef BUILD_TESTS
void SetPolicyManager(utils::SharedPtr<PolicyManager> pm) {
@@ -484,21 +484,21 @@ class PolicyHandler : public PolicyHandlerInterface,
}
void Increment(const std::string& app_id,
- usage_statistics::AppCounterId type) OVERRIDE {
+ usage_statistics::AppCounterId type) OVERRIDE {
policy_handler_->AsyncRun(
new StatisticsDelegate(*policy_handler_, app_id, type));
}
void Set(const std::string& app_id,
- usage_statistics::AppInfoId type,
- const std::string& value) OVERRIDE {
+ usage_statistics::AppInfoId type,
+ const std::string& value) OVERRIDE {
policy_handler_->AsyncRun(
new StatisticsDelegate(*policy_handler_, app_id, type, value));
}
void Add(const std::string& app_id,
- usage_statistics::AppStopwatchId type,
- int32_t timespan_seconds) OVERRIDE {
+ usage_statistics::AppStopwatchId type,
+ int32_t timespan_seconds) OVERRIDE {
policy_handler_->AsyncRun(new StatisticsDelegate(
*policy_handler_, app_id, type, timespan_seconds));
}