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

Unified Diff: content/browser/plugin_service_impl.h

Issue 11794042: Switch to using FilePathWatcher::Callback instead of FilePathWatcher::Delegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | « no previous file | content/browser/plugin_service_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/plugin_service_impl.h
diff --git a/content/browser/plugin_service_impl.h b/content/browser/plugin_service_impl.h
index 1b7edfaa20bf9adab5a8f6477ee4b6c06c847788..bb163b62be7837dd19dcd78e49085dce066680d4 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_;
« no previous file with comments | « no previous file | content/browser/plugin_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698