Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / remoting / host / policy_hack / fake_policy_watcher.cc
blob809961b2ae72ba342fd8fea38575aae2a3b7e80a
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"
9 namespace remoting {
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