Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Unified Diff: content/common/file_path_watcher/file_path_watcher.cc

Issue 6731064: kqueue implementation of FilePathWatcher on Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Xcode didn't save some files, so win and linux changes missed Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/file_path_watcher/file_path_watcher.cc
diff --git a/content/common/file_path_watcher/file_path_watcher.cc b/content/common/file_path_watcher/file_path_watcher.cc
index f40c8c85d4e6593ba1652d8d83d1f0e465ac919f..41f3e2b10a98ef490a0edc75691e407b9f244a49 100644
--- a/content/common/file_path_watcher/file_path_watcher.cc
+++ b/content/common/file_path_watcher/file_path_watcher.cc
@@ -14,11 +14,9 @@ FilePathWatcher::~FilePathWatcher() {
impl_->Cancel();
}
-bool FilePathWatcher::Watch(const FilePath& path,
- Delegate* delegate,
- base::MessageLoopProxy* loop) {
+bool FilePathWatcher::Watch(const FilePath& path, Delegate* delegate) {
DCHECK(path.IsAbsolute());
- return impl_->Watch(path, delegate, loop);
+ return impl_->Watch(path, delegate);
}
FilePathWatcher::PlatformDelegate::PlatformDelegate(): cancelled_(false) {

Powered by Google App Engine
This is Rietveld 408576698