summaryrefslogtreecommitdiffstats
path: root/content/browser/plugin_service.h
diff options
context:
space:
mode:
authorcraig.schlenter@chromium.org <craig.schlenter@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-14 16:56:01 +0000
committercraig.schlenter@chromium.org <craig.schlenter@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-14 16:56:01 +0000
commit493c8001f5011b3f0aacf06a57df7f523b09b23c (patch)
tree7cd7d409b12a85fb9f36c2bca0a54488d551b800 /content/browser/plugin_service.h
parentbb8890e9cee0c997257873e9c978eead7d028568 (diff)
downloadchromium_src-493c8001f5011b3f0aacf06a57df7f523b09b23c.zip
chromium_src-493c8001f5011b3f0aacf06a57df7f523b09b23c.tar.gz
chromium_src-493c8001f5011b3f0aacf06a57df7f523b09b23c.tar.bz2
Move FilePathWatcher to base/files.
FilePathWatcher is going to be used in future for monitoring changes to /etc/resolv.conf so it needs live somewhere where various consumers can get at it without incurring the wrath of the layering gods. TEST=existing tests BUG=67734 Review URL: http://codereview.chromium.org/6793020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81606 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/plugin_service.h')
-rw-r--r--content/browser/plugin_service.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/content/browser/plugin_service.h b/content/browser/plugin_service.h
index 5c37c01..d5c5004 100644
--- a/content/browser/plugin_service.h
+++ b/content/browser/plugin_service.h
@@ -34,7 +34,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)
@@ -177,9 +177,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.
@@ -210,7 +210,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