| Index: remoting/host/policy_hack/policy_watcher_linux.cc
|
| diff --git a/remoting/host/policy_hack/policy_watcher_linux.cc b/remoting/host/policy_hack/policy_watcher_linux.cc
|
| index 75a654125f63fbca8deb50fa5e8059d2d9272440..d67b49bf6096c52cbaabba860f6d6e8c8b86fcce 100644
|
| --- a/remoting/host/policy_hack/policy_watcher_linux.cc
|
| +++ b/remoting/host/policy_hack/policy_watcher_linux.cc
|
| @@ -57,7 +57,7 @@ class PolicyWatcherLinux : public PolicyWatcher {
|
| virtual ~PolicyWatcherLinux() {}
|
|
|
| protected:
|
| - virtual void StartWatchingInternal() OVERRIDE {
|
| + virtual void StartWatchingInternal() override {
|
| DCHECK(OnPolicyWatcherThread());
|
| watcher_.reset(new base::FilePathWatcher());
|
|
|
| @@ -77,7 +77,7 @@ class PolicyWatcherLinux : public PolicyWatcher {
|
| ScheduleFallbackReloadTask();
|
| }
|
|
|
| - virtual void StopWatchingInternal() OVERRIDE {
|
| + virtual void StopWatchingInternal() override {
|
| DCHECK(OnPolicyWatcherThread());
|
|
|
| // Stop watching for changes to files in the policies directory.
|
| @@ -162,7 +162,7 @@ class PolicyWatcherLinux : public PolicyWatcher {
|
| return policy.Pass();
|
| }
|
|
|
| - virtual void Reload() OVERRIDE {
|
| + virtual void Reload() override {
|
| DCHECK(OnPolicyWatcherThread());
|
| // Check the directory time in order to see whether a reload is required.
|
| base::TimeDelta delay;
|
|
|