diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-21 06:00:56 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-21 06:00:56 +0000 |
commit | e67385f3093d79371b080f3042b754cf4fd0e63e (patch) | |
tree | d0309f72fb6da658e325e7e84080a4cbd8eb397c /content/browser/plugin_loader_posix.h | |
parent | d487beefe0374fb88cebc02b95063fa7ae6f5beb (diff) | |
download | chromium_src-e67385f3093d79371b080f3042b754cf4fd0e63e.zip chromium_src-e67385f3093d79371b080f3042b754cf4fd0e63e.tar.gz chromium_src-e67385f3093d79371b080f3042b754cf4fd0e63e.tar.bz2 |
Rename PluginService to PluginServiceImpl.
BUG=98716
Review URL: http://codereview.chromium.org/9019004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115279 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/plugin_loader_posix.h')
-rw-r--r-- | content/browser/plugin_loader_posix.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/content/browser/plugin_loader_posix.h b/content/browser/plugin_loader_posix.h index 213a6a8..1646643 100644 --- a/content/browser/plugin_loader_posix.h +++ b/content/browser/plugin_loader_posix.h @@ -10,7 +10,7 @@ #include "base/basictypes.h" #include "base/memory/ref_counted.h" #include "base/time.h" -#include "content/browser/plugin_service.h" +#include "content/browser/plugin_service_impl.h" #include "content/browser/utility_process_host.h" #include "ipc/ipc_message.h" #include "webkit/plugins/webplugininfo.h" @@ -49,8 +49,9 @@ class CONTENT_EXPORT PluginLoaderPosix : public UtilityProcessHost::Client, PluginLoaderPosix(); // Must be called from the IO thread. - void LoadPlugins(scoped_refptr<base::MessageLoopProxy> target_loop, - const PluginService::GetPluginsCallback& callback); + void LoadPlugins( + scoped_refptr<base::MessageLoopProxy> target_loop, + const content::PluginService::GetPluginsCallback& callback); // UtilityProcessHost::Client: virtual void OnProcessCrashed(int exit_code) OVERRIDE; @@ -62,11 +63,11 @@ class CONTENT_EXPORT PluginLoaderPosix : public UtilityProcessHost::Client, private: struct PendingCallback { PendingCallback(scoped_refptr<base::MessageLoopProxy> target_loop, - const PluginService::GetPluginsCallback& callback); + const content::PluginService::GetPluginsCallback& callback); ~PendingCallback(); scoped_refptr<base::MessageLoopProxy> target_loop; - PluginService::GetPluginsCallback callback; + content::PluginService::GetPluginsCallback callback; }; virtual ~PluginLoaderPosix(); |