Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_POLICY_CORE_BROWSER_CONFIGURATION_POLICY_PREF_STORE_TEST_H_ | 5 #ifndef COMPONENTS_POLICY_CORE_BROWSER_CONFIGURATION_POLICY_PREF_STORE_TEST_H_ |
| 6 #define COMPONENTS_POLICY_CORE_BROWSER_CONFIGURATION_POLICY_PREF_STORE_TEST_H_ | 6 #define COMPONENTS_POLICY_CORE_BROWSER_CONFIGURATION_POLICY_PREF_STORE_TEST_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
| 12 #include "components/policy/core/browser/configuration_policy_handler_list.h" | 12 #include "components/policy/core/browser/configuration_policy_handler_list.h" |
| 13 #include "components/policy/core/common/mock_configuration_policy_provider.h" | 13 #include "components/policy/core/common/mock_configuration_policy_provider.h" |
| 14 #include "components/policy/core/common/policy_service_impl.h" | 14 #include "components/policy/core/common/policy_service_impl.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 | 16 |
| 17 namespace policy { | 17 namespace policy { |
| 18 | 18 |
| 19 class PolicyMap; | 19 class PolicyMap; |
| 20 class PolicyService; | 20 class PolicyService; |
| 21 class ConfigurationPolicyPrefStore; | 21 class ConfigurationPolicyPrefStore; |
| 22 struct PolicyHandlerParameters; | |
|
bartfab (slow)
2014/03/14 13:43:45
Nit: Arrange in alphabetic order.
| |
| 22 | 23 |
| 23 class ConfigurationPolicyPrefStoreTest : public testing::Test { | 24 class ConfigurationPolicyPrefStoreTest : public testing::Test { |
| 24 protected: | 25 protected: |
| 25 ConfigurationPolicyPrefStoreTest(); | 26 ConfigurationPolicyPrefStoreTest(); |
| 26 virtual ~ConfigurationPolicyPrefStoreTest(); | 27 virtual ~ConfigurationPolicyPrefStoreTest(); |
| 27 virtual void TearDown() OVERRIDE; | 28 virtual void TearDown() OVERRIDE; |
| 29 virtual void PopulatePolicyHandlerParameters(PolicyHandlerParameters* perf); | |
|
bartfab (slow)
2014/03/14 13:43:45
Nit 1: Move this down a few lines so that instead
| |
| 28 void UpdateProviderPolicy(const PolicyMap& policy); | 30 void UpdateProviderPolicy(const PolicyMap& policy); |
| 29 | 31 |
| 30 PolicyServiceImpl::Providers providers_; | 32 PolicyServiceImpl::Providers providers_; |
| 31 ConfigurationPolicyHandlerList handler_list_; | 33 ConfigurationPolicyHandlerList handler_list_; |
| 32 MockConfigurationPolicyProvider provider_; | 34 MockConfigurationPolicyProvider provider_; |
| 33 scoped_ptr<PolicyService> policy_service_; | 35 scoped_ptr<PolicyService> policy_service_; |
| 34 scoped_refptr<ConfigurationPolicyPrefStore> store_; | 36 scoped_refptr<ConfigurationPolicyPrefStore> store_; |
| 35 base::MessageLoop loop_; | 37 base::MessageLoop loop_; |
| 36 | 38 |
| 37 private: | 39 private: |
| 38 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyPrefStoreTest); | 40 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyPrefStoreTest); |
| 39 }; | 41 }; |
| 40 | 42 |
| 41 } // namespace policy | 43 } // namespace policy |
| 42 | 44 |
| 43 #endif // COMPONENTS_POLICY_CORE_BROWSER_CONFIGURATION_POLICY_PREF_STORE_TEST_H _ | 45 #endif // COMPONENTS_POLICY_CORE_BROWSER_CONFIGURATION_POLICY_PREF_STORE_TEST_H _ |
| OLD | NEW |