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

Unified Diff: content/browser/plugin_loader_posix.h

Issue 9019004: Rename PluginService to PluginServiceImpl. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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
Index: content/browser/plugin_loader_posix.h
===================================================================
--- content/browser/plugin_loader_posix.h (revision 115259)
+++ content/browser/plugin_loader_posix.h (working copy)
@@ -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 @@
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 @@
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();

Powered by Google App Engine
This is Rietveld 408576698