diff options
Diffstat (limited to 'base/files/file_path_watcher_win.cc')
-rw-r--r-- | base/files/file_path_watcher_win.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/base/files/file_path_watcher_win.cc b/base/files/file_path_watcher_win.cc index 54a2388..98169ab 100644 --- a/base/files/file_path_watcher_win.cc +++ b/base/files/file_path_watcher_win.cc @@ -30,13 +30,13 @@ class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate, // FilePathWatcher::PlatformDelegate overrides. virtual bool Watch(const FilePath& path, bool recursive, - const FilePathWatcher::Callback& callback) OVERRIDE; - virtual void Cancel() OVERRIDE; + const FilePathWatcher::Callback& callback) override; + virtual void Cancel() override; // Deletion of the FilePathWatcher will call Cancel() to dispose of this // object in the right thread. This also observes destruction of the required // cleanup thread, in case it quits before Cancel() is called. - virtual void WillDestroyCurrentMessageLoop() OVERRIDE; + virtual void WillDestroyCurrentMessageLoop() override; // Callback from MessageLoopForIO. virtual void OnObjectSignaled(HANDLE object); @@ -59,7 +59,7 @@ class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate, void DestroyWatch(); // Cleans up and stops observing the |message_loop_| thread. - void CancelOnMessageLoopThread() OVERRIDE; + void CancelOnMessageLoopThread() override; // Callback to notify upon changes. FilePathWatcher::Callback callback_; |