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

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

Issue 6670081: Move FilePathWatcher class from browser/... to common/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments 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_stub.cc
diff --git a/chrome/browser/file_path_watcher/file_path_watcher_stub.cc b/content/common/file_path_watcher/file_path_watcher_stub.cc
similarity index 67%
rename from chrome/browser/file_path_watcher/file_path_watcher_stub.cc
rename to content/common/file_path_watcher/file_path_watcher_stub.cc
index 6387715b67a67581910f7a6423a8cd9d86ac9284..a7b1c59254995bea43ce86a9164e5f99df53f736 100644
--- a/chrome/browser/file_path_watcher/file_path_watcher_stub.cc
+++ b/content/common/file_path_watcher/file_path_watcher_stub.cc
@@ -5,11 +5,13 @@
// This file exists for Unix systems which don't have the inotify headers, and
// thus cannot build file_watcher_inotify.cc
-#include "chrome/browser/file_path_watcher/file_path_watcher.h"
+#include "chrome/common/file_path_watcher/file_path_watcher.h"
class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate {
public:
- virtual bool Watch(const FilePath& path, FileWatcher::Delegate* delegate) {
+ virtual bool Watch(const FilePath& path,
+ FileWatcher::Delegate* delegate,
+ scoped_refptr<base::MessageLoopProxy>) OVERRIDE {
return false;
}
};

Powered by Google App Engine
This is Rietveld 408576698