This source file includes following definitions.
- SetPolicies
- StartWatchingInternal
- StopWatchingInternal
- Reload
#include "remoting/host/policy_hack/fake_policy_watcher.h"
#include "base/single_thread_task_runner.h"
namespace remoting {
namespace policy_hack {
FakePolicyWatcher::FakePolicyWatcher(
scoped_refptr<base::SingleThreadTaskRunner> task_runner)
: PolicyWatcher(task_runner) {
}
FakePolicyWatcher::~FakePolicyWatcher() {
}
void FakePolicyWatcher::SetPolicies(const base::DictionaryValue* policies) {
UpdatePolicies(policies);
}
void FakePolicyWatcher::StartWatchingInternal() {
}
void FakePolicyWatcher::StopWatchingInternal() {
}
void FakePolicyWatcher::Reload() {
}
}
}