| Index: remoting/host/policy_hack/fake_policy_watcher.h
|
| diff --git a/remoting/host/policy_hack/fake_policy_watcher.h b/remoting/host/policy_hack/fake_policy_watcher.h
|
| index 2543f9cba89237cfe21cacfdf84a485649046468..7faf3a0c194a2ba7d1d195c198e425741d408619 100644
|
| --- a/remoting/host/policy_hack/fake_policy_watcher.h
|
| +++ b/remoting/host/policy_hack/fake_policy_watcher.h
|
| @@ -14,14 +14,14 @@ class FakePolicyWatcher : public PolicyWatcher {
|
| public:
|
| explicit FakePolicyWatcher(
|
| scoped_refptr<base::SingleThreadTaskRunner> task_runner);
|
| - virtual ~FakePolicyWatcher();
|
| + ~FakePolicyWatcher() override;
|
|
|
| void SetPolicies(const base::DictionaryValue* policies);
|
|
|
| protected:
|
| - virtual void StartWatchingInternal() override;
|
| - virtual void StopWatchingInternal() override;
|
| - virtual void Reload() override;
|
| + void StartWatchingInternal() override;
|
| + void StopWatchingInternal() override;
|
| + void Reload() override;
|
| };
|
|
|
| } // namespace policy_hack
|
|
|