blob: 11cde667a9224172d806aafffc347240f67ddac9 (
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
|
// 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.
#include "chrome/browser/policy/policy_service_stub.h"
#include "base/message_loop.h"
namespace policy {
PolicyServiceStub::PolicyServiceStub() {}
PolicyServiceStub::~PolicyServiceStub() {}
void PolicyServiceStub::AddObserver(PolicyDomain domain,
Observer* observer) {}
void PolicyServiceStub::RemoveObserver(PolicyDomain domain,
Observer* observer) {}
const PolicyMap& PolicyServiceStub::GetPolicies(
PolicyDomain domain,
const std::string& component_id) const {
return kEmpty_;
};
bool PolicyServiceStub::IsInitializationComplete() const {
return true;
}
void PolicyServiceStub::RefreshPolicies(const base::Closure& callback) {
if (!callback.is_null())
callback.Run();
}
} // namespace policy
|