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 |