summaryrefslogtreecommitdiffstats
path: root/content/browser/plugin_service_impl.h
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-08 19:07:31 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-08 19:07:31 +0000
commit07b71c86d06a34f21bbd4109f74fc6b24f2bcd68 (patch)
tree9ad6106963b2db5a94265ae6b2be82fd9d4c13c4 /content/browser/plugin_service_impl.h
parent0cb6cf7219217ebe982e5b8d222229ca0ae09252 (diff)
downloadchromium_src-07b71c86d06a34f21bbd4109f74fc6b24f2bcd68.zip
chromium_src-07b71c86d06a34f21bbd4109f74fc6b24f2bcd68.tar.gz
chromium_src-07b71c86d06a34f21bbd4109f74fc6b24f2bcd68.tar.bz2
Switch to using FilePathWatcher::Callback instead of FilePathWatcher::Delegate.
BUG=130980 Review URL: https://codereview.chromium.org/11794042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175570 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/plugin_service_impl.h')
-rw-r--r--content/browser/plugin_service_impl.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/content/browser/plugin_service_impl.h b/content/browser/plugin_service_impl.h
index 1b7edfa..bb163b6 100644
--- a/content/browser/plugin_service_impl.h
+++ b/content/browser/plugin_service_impl.h
@@ -196,16 +196,13 @@ class CONTENT_EXPORT PluginServiceImpl
// Helper so we can finish opening the channel after looking up the
// plugin.
- void FinishOpenChannelToPlugin(
- const FilePath& plugin_path,
- PluginProcessHost::Client* client);
+ void FinishOpenChannelToPlugin(const FilePath& plugin_path,
+ PluginProcessHost::Client* client);
#if defined(OS_POSIX) && !defined(OS_OPENBSD) && !defined(OS_ANDROID)
// Registers a new FilePathWatcher for a given path.
- static void RegisterFilePathWatcher(
- base::files::FilePathWatcher* watcher,
- const FilePath& path,
- base::files::FilePathWatcher::Delegate* delegate);
+ static void RegisterFilePathWatcher(base::files::FilePathWatcher* watcher,
+ const FilePath& path);
#endif
// The plugin list instance.
@@ -223,7 +220,6 @@ class CONTENT_EXPORT PluginServiceImpl
#if defined(OS_POSIX) && !defined(OS_OPENBSD) && !defined(OS_ANDROID)
ScopedVector<base::files::FilePathWatcher> file_watchers_;
- scoped_refptr<PluginDirWatcherDelegate> file_watcher_delegate_;
#endif
std::vector<PepperPluginInfo> ppapi_plugins_;