Index: content/common/file_path_watcher/file_path_watcher_win.cc |
diff --git a/content/common/file_path_watcher/file_path_watcher_win.cc b/content/common/file_path_watcher/file_path_watcher_win.cc |
index dc3695893c377f488dfde514ccb956ce6a9a3143..0a9a39c6f6048ff29798213b50049ae41941b250 100644 |
--- a/content/common/file_path_watcher/file_path_watcher_win.cc |
+++ b/content/common/file_path_watcher/file_path_watcher_win.cc |
@@ -22,8 +22,7 @@ class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate, |
// FilePathWatcher::PlatformDelegate overrides. |
virtual bool Watch(const FilePath& path, |
- FilePathWatcher::Delegate* delegate, |
- base::MessageLoopProxy* loop) OVERRIDE; |
+ FilePathWatcher::Delegate* delegate) OVERRIDE; |
virtual void Cancel() OVERRIDE; |
// Deletion of the FilePathWatcher will call Cancel() to dispose of this |
@@ -76,8 +75,7 @@ class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate, |
}; |
bool FilePathWatcherImpl::Watch(const FilePath& path, |
- FilePathWatcher::Delegate* delegate, |
- base::MessageLoopProxy*) { |
+ FilePathWatcher::Delegate* delegate) { |
DCHECK(target_.value().empty()); // Can only watch one path. |
set_message_loop(base::MessageLoopProxy::CreateForCurrentThread()); |