| Index: base/files/file_path_watcher_stub.cc
|
| diff --git a/base/files/file_path_watcher_stub.cc b/base/files/file_path_watcher_stub.cc
|
| index afca0dab96b0224911be8d6e53d5d2ec11b4bc57..f467c7548de6d658a78c1487465c030e44713fc2 100644
|
| --- a/base/files/file_path_watcher_stub.cc
|
| +++ b/base/files/file_path_watcher_stub.cc
|
| @@ -13,15 +13,15 @@ namespace {
|
|
|
| class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate {
|
| public:
|
| - virtual bool Watch(const FilePath& path,
|
| - bool recursive,
|
| - const FilePathWatcher::Callback& callback) OVERRIDE {
|
| + bool Watch(const FilePath& path,
|
| + bool recursive,
|
| + const FilePathWatcher::Callback& callback) override {
|
| return false;
|
| }
|
|
|
| - virtual void Cancel() OVERRIDE {}
|
| + void Cancel() override {}
|
|
|
| - virtual void CancelOnMessageLoopThread() OVERRIDE {}
|
| + void CancelOnMessageLoopThread() override {}
|
|
|
| protected:
|
| virtual ~FilePathWatcherImpl() {}
|
|
|