| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_POLICY_TESTING_CLOUD_POLICY_SUBSYSTEM_H_ | 5 #ifndef CHROME_BROWSER_POLICY_TESTING_CLOUD_POLICY_SUBSYSTEM_H_ |
| 6 #define CHROME_BROWSER_POLICY_TESTING_CLOUD_POLICY_SUBSYSTEM_H_ | 6 #define CHROME_BROWSER_POLICY_TESTING_CLOUD_POLICY_SUBSYSTEM_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/policy/cloud_policy_subsystem.h" | 9 #include "chrome/browser/policy/cloud_policy_subsystem.h" |
| 10 | 10 |
| 11 namespace policy { | 11 namespace policy { |
| 12 | 12 |
| 13 class CloudPolicyDataStore; |
| 13 class EventLogger; | 14 class EventLogger; |
| 14 | 15 |
| 15 // A CloudPolicySubsystem for testing: it uses EventLogger to issue delayed | 16 // A CloudPolicySubsystem for testing: it uses EventLogger to issue delayed |
| 16 // tasks with 0 effective delay, and log the times of their executions. | 17 // tasks with 0 effective delay, and log the times of their executions. |
| 17 class TestingCloudPolicySubsystem : public CloudPolicySubsystem { | 18 class TestingCloudPolicySubsystem : public CloudPolicySubsystem { |
| 18 public: | 19 public: |
| 19 // Takes ownership of |policy_cache|. | 20 // Takes ownership of |policy_cache|. |
| 20 TestingCloudPolicySubsystem(CloudPolicyIdentityStrategy* identity_strategy, | 21 TestingCloudPolicySubsystem(CloudPolicyDataStore* data, |
| 21 CloudPolicyCacheBase* policy_cache, | 22 CloudPolicyCacheBase* policy_cache, |
| 22 const std::string& device_management_url, | 23 const std::string& device_management_url, |
| 23 EventLogger* logger); | 24 EventLogger* logger); |
| 24 | 25 |
| 25 private: | 26 private: |
| 26 virtual void CreateDeviceTokenFetcher() OVERRIDE; | 27 virtual void CreateDeviceTokenFetcher() OVERRIDE; |
| 27 virtual void CreateCloudPolicyController() OVERRIDE; | 28 virtual void CreateCloudPolicyController() OVERRIDE; |
| 28 | 29 |
| 29 EventLogger* logger_; | 30 EventLogger* logger_; |
| 30 | 31 |
| 31 DISALLOW_COPY_AND_ASSIGN(TestingCloudPolicySubsystem); | 32 DISALLOW_COPY_AND_ASSIGN(TestingCloudPolicySubsystem); |
| 32 }; | 33 }; |
| 33 | 34 |
| 34 } // namespace Policy | 35 } // namespace Policy |
| 35 | 36 |
| 36 #endif // CHROME_BROWSER_POLICY_TESTING_CLOUD_POLICY_SUBSYSTEM_H_ | 37 #endif // CHROME_BROWSER_POLICY_TESTING_CLOUD_POLICY_SUBSYSTEM_H_ |
| OLD | NEW |