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

Unified Diff: chrome/browser/file_watcher_stub.cc

Issue 864001: Move FileWatcher from src/base/ to src/chrome/browser/ and switch (Closed)
Patch Set: fix tests on mac Created 10 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
« no previous file with comments | « chrome/browser/file_watcher_mac.cc ('k') | chrome/browser/file_watcher_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/file_watcher_stub.cc
diff --git a/base/file_watcher_stub.cc b/chrome/browser/file_watcher_stub.cc
similarity index 84%
rename from base/file_watcher_stub.cc
rename to chrome/browser/file_watcher_stub.cc
index 99484fc94439f97c6791764607a9976c6684001f..96e24f4bbc37d0010532a400ec3ad8116bee045c 100644
--- a/base/file_watcher_stub.cc
+++ b/chrome/browser/file_watcher_stub.cc
@@ -5,12 +5,11 @@
// This file exists for Linux systems which don't have the inotify headers, and
// thus cannot build file_watcher_inotify.cc
-#include "base/file_watcher.h"
+#include "chrome/browser/file_watcher.h"
class FileWatcherImpl : public FileWatcher::PlatformDelegate {
public:
- virtual bool Watch(const FilePath& path, FileWatcher::Delegate* delegate,
- MessageLoop* backend_loop) {
+ virtual bool Watch(const FilePath& path, FileWatcher::Delegate* delegate) {
return false;
}
};
« no previous file with comments | « chrome/browser/file_watcher_mac.cc ('k') | chrome/browser/file_watcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698