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
3 // found in the LICENSE file.
5 #include "remoting/host/policy_hack/fake_policy_watcher.h"
7 #include "base/single_thread_task_runner.h"
10 namespace policy_hack
{
12 FakePolicyWatcher::FakePolicyWatcher(
13 scoped_refptr
<base::SingleThreadTaskRunner
> task_runner
)
14 : PolicyWatcher(task_runner
) {
17 FakePolicyWatcher::~FakePolicyWatcher() {
20 void FakePolicyWatcher::SetPolicies(const base::DictionaryValue
* policies
) {
21 UpdatePolicies(policies
);
24 void FakePolicyWatcher::StartWatchingInternal() {
27 void FakePolicyWatcher::StopWatchingInternal() {
30 void FakePolicyWatcher::Reload() {
33 } // namespace policy_hack
34 } // namespace remoting