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

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: use ::operator<< 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
« no previous file with comments | « chrome/common/service_process_util_posix.h ('k') | content/browser/plugin_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/plugin_service.h
diff --git a/content/browser/plugin_service.h b/content/browser/plugin_service.h
index 4943d42751c2133d15535a9259d596a7c531dd54..f0b7c0b15b05f82afe02ca822539500d29259e81 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)
@@ -169,9 +169,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.
@@ -202,7 +202,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
« no previous file with comments | « chrome/common/service_process_util_posix.h ('k') | content/browser/plugin_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698