| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_POLICY_SERVICE_STUB_H_ | 5 #ifndef CHROME_BROWSER_POLICY_POLICY_SERVICE_STUB_H_ |
| 6 #define CHROME_BROWSER_POLICY_POLICY_SERVICE_STUB_H_ | 6 #define CHROME_BROWSER_POLICY_POLICY_SERVICE_STUB_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "chrome/browser/policy/policy_map.h" | |
| 10 #include "chrome/browser/policy/policy_service.h" | 9 #include "chrome/browser/policy/policy_service.h" |
| 10 #include "components/policy/core/common/policy_map.h" |
| 11 | 11 |
| 12 namespace policy { | 12 namespace policy { |
| 13 | 13 |
| 14 // A stub implementation, that is used when ENABLE_CONFIGURATION_POLICY is not | 14 // A stub implementation, that is used when ENABLE_CONFIGURATION_POLICY is not |
| 15 // set. This allows client code to compile without requiring #ifdefs. | 15 // set. This allows client code to compile without requiring #ifdefs. |
| 16 class PolicyServiceStub : public PolicyService { | 16 class PolicyServiceStub : public PolicyService { |
| 17 public: | 17 public: |
| 18 PolicyServiceStub(); | 18 PolicyServiceStub(); |
| 19 virtual ~PolicyServiceStub(); | 19 virtual ~PolicyServiceStub(); |
| 20 | 20 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 32 virtual void RefreshPolicies(const base::Closure& callback) OVERRIDE; | 32 virtual void RefreshPolicies(const base::Closure& callback) OVERRIDE; |
| 33 private: | 33 private: |
| 34 const PolicyMap kEmpty_; | 34 const PolicyMap kEmpty_; |
| 35 | 35 |
| 36 DISALLOW_COPY_AND_ASSIGN(PolicyServiceStub); | 36 DISALLOW_COPY_AND_ASSIGN(PolicyServiceStub); |
| 37 }; | 37 }; |
| 38 | 38 |
| 39 } // namespace policy | 39 } // namespace policy |
| 40 | 40 |
| 41 #endif // CHROME_BROWSER_POLICY_POLICY_SERVICE_STUB_H_ | 41 #endif // CHROME_BROWSER_POLICY_POLICY_SERVICE_STUB_H_ |
| OLD | NEW |