| Index: content/common/file_path_watcher/file_path_watcher_inotify.cc
|
| diff --git a/content/common/file_path_watcher/file_path_watcher_inotify.cc b/content/common/file_path_watcher/file_path_watcher_inotify.cc
|
| index 50d734288a105c463a2de7bdd81ba2900db37047..4bc7d8cd1ab8e69a8a58964aca440abd37cf7a18 100644
|
| --- a/content/common/file_path_watcher/file_path_watcher_inotify.cc
|
| +++ b/content/common/file_path_watcher/file_path_watcher_inotify.cc
|
| @@ -98,8 +98,7 @@ class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate,
|
| // Start watching |path| for changes and notify |delegate| on each change.
|
| // Returns true if watch for |path| has been added successfully.
|
| virtual bool Watch(const FilePath& path,
|
| - FilePathWatcher::Delegate* delegate,
|
| - base::MessageLoopProxy* loop) OVERRIDE;
|
| + FilePathWatcher::Delegate* delegate) OVERRIDE;
|
|
|
| // Cancel the watch. This unregisters the instance with InotifyReader.
|
| virtual void Cancel() OVERRIDE;
|
| @@ -364,8 +363,7 @@ void FilePathWatcherImpl::OnFilePathChanged(
|
| }
|
|
|
| bool FilePathWatcherImpl::Watch(const FilePath& path,
|
| - FilePathWatcher::Delegate* delegate,
|
| - base::MessageLoopProxy*) {
|
| + FilePathWatcher::Delegate* delegate) {
|
| DCHECK(target_.empty());
|
| DCHECK(MessageLoopForIO::current());
|
|
|
|
|