summaryrefslogtreecommitdiff
path: root/components/policy/core/common/policy_service_stub.h
diff options
context:
space:
mode:
Diffstat (limited to 'components/policy/core/common/policy_service_stub.h')
-rw-r--r--components/policy/core/common/policy_service_stub.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/components/policy/core/common/policy_service_stub.h b/components/policy/core/common/policy_service_stub.h
deleted file mode 100644
index 8759336fe8..0000000000
--- a/components/policy/core/common/policy_service_stub.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef COMPONENTS_POLICY_CORE_COMMON_POLICY_SERVICE_STUB_H_
-#define COMPONENTS_POLICY_CORE_COMMON_POLICY_SERVICE_STUB_H_
-
-#include "base/macros.h"
-#include "components/policy/core/common/policy_map.h"
-#include "components/policy/core/common/policy_service.h"
-#include "components/policy/policy_export.h"
-
-namespace policy {
-
-// A stub implementation, that is used when ENABLE_CONFIGURATION_POLICY is not
-// set. This allows client code to compile without requiring #ifdefs.
-class POLICY_EXPORT PolicyServiceStub : public PolicyService {
- public:
- PolicyServiceStub();
- ~PolicyServiceStub() override;
-
- void AddObserver(PolicyDomain domain,
- Observer* observer) override;
-
- void RemoveObserver(PolicyDomain domain,
- Observer* observer) override;
-
- const PolicyMap& GetPolicies(
- const PolicyNamespace& ns) const override;
-
- bool IsInitializationComplete(PolicyDomain domain) const override;
-
- void RefreshPolicies(const base::Closure& callback) override;
- private:
- const PolicyMap kEmpty_;
-
- DISALLOW_COPY_AND_ASSIGN(PolicyServiceStub);
-};
-
-} // namespace policy
-
-#endif // COMPONENTS_POLICY_CORE_COMMON_POLICY_SERVICE_STUB_H_