blob: 3a3bdc5c1f512028f2975c073f65612130f892f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// 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 CHROME_BROWSER_POLICY_POLICY_SERVICE_STUB_H_
#define CHROME_BROWSER_POLICY_POLICY_SERVICE_STUB_H_
#pragma once
#include "base/basictypes.h"
#include "chrome/browser/policy/policy_service.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 PolicyServiceStub : public PolicyService {
public:
PolicyServiceStub();
virtual ~PolicyServiceStub();
virtual void AddObserver(PolicyDomain domain,
const std::string& component_id,
Observer* observer) OVERRIDE;
virtual void RemoveObserver(PolicyDomain domain,
const std::string& component_id,
Observer* observer) OVERRIDE;
virtual const PolicyMap* GetPolicies(
PolicyDomain domain,
const std::string& component_id) const OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(PolicyServiceStub);
};
} // namespace policy
#endif // CHROME_BROWSER_POLICY_POLICY_SERVICE_STUB_H_
|