| Index: base/files/file_path_watcher_fsevents.h
|
| diff --git a/base/files/file_path_watcher_fsevents.h b/base/files/file_path_watcher_fsevents.h
|
| index d2fb8dad5d8d3268364bc2614ab8d0d04e8ffab8..800c5b43f6879aa0d5d66eb1164f2f69edb3d5a8 100644
|
| --- a/base/files/file_path_watcher_fsevents.h
|
| +++ b/base/files/file_path_watcher_fsevents.h
|
| @@ -36,13 +36,13 @@ class FilePathWatcherFSEvents : public FilePathWatcher::PlatformDelegate {
|
| bool ResolveTargetPath();
|
|
|
| // FilePathWatcher::PlatformDelegate overrides.
|
| - virtual bool Watch(const FilePath& path,
|
| - bool recursive,
|
| - const FilePathWatcher::Callback& callback) override;
|
| - virtual void Cancel() override;
|
| + bool Watch(const FilePath& path,
|
| + bool recursive,
|
| + const FilePathWatcher::Callback& callback) override;
|
| + void Cancel() override;
|
|
|
| private:
|
| - virtual ~FilePathWatcherFSEvents();
|
| + ~FilePathWatcherFSEvents() override;
|
|
|
| // Destroy the event stream.
|
| void DestroyEventStream();
|
| @@ -51,7 +51,7 @@ class FilePathWatcherFSEvents : public FilePathWatcher::PlatformDelegate {
|
| void StartEventStream(FSEventStreamEventId start_event);
|
|
|
| // Cleans up and stops the event stream.
|
| - virtual void CancelOnMessageLoopThread() override;
|
| + void CancelOnMessageLoopThread() override;
|
|
|
| // Callback to notify upon changes.
|
| FilePathWatcher::Callback callback_;
|
|
|