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

Unified Diff: content/browser/plugin_service.h

Issue 6793020: Move FilePathWatcher to base/files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: plugin_service only uses FPW on linux Created 9 years, 8 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/browser/plugin_service.h
diff --git a/content/browser/plugin_service.h b/content/browser/plugin_service.h
index 2bc31b7bd2b62f1efcd05b06c3d9d872d5c50fc0..571a82a825c2087b99f48a7d7829498aa231cbec 100644
--- a/content/browser/plugin_service.h
+++ b/content/browser/plugin_service.h
@@ -33,7 +33,7 @@
#endif
#if defined(OS_LINUX)
-#include "content/common/file_path_watcher/file_path_watcher.h"
+#include "base/files/file_path_watcher.h"
#endif
#if defined(OS_CHROMEOS)
@@ -173,9 +173,9 @@ class PluginService
#if defined(OS_LINUX)
// Registers a new FilePathWatcher for a given path.
static void RegisterFilePathWatcher(
- FilePathWatcher* watcher,
+ base::files::FilePathWatcher* watcher,
const FilePath& path,
- FilePathWatcher::Delegate* delegate);
+ base::files::FilePathWatcher::Delegate* delegate);
#endif
// The main thread's message loop.
@@ -209,7 +209,7 @@ class PluginService
#endif
#if defined(OS_LINUX)
- ScopedVector<FilePathWatcher> file_watchers_;
+ ScopedVector<base::files::FilePathWatcher> file_watchers_;
scoped_refptr<PluginDirWatcherDelegate> file_watcher_delegate_;
#endif

Powered by Google App Engine
This is Rietveld 408576698