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

Unified Diff: content/common/content_client.h

Issue 7978009: Split ppapi::PluginList from PepperPluginRegistry so that DRT could load pepper plugins. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 3 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 | « content/browser/ppapi_plugin_process_host.cc ('k') | content/common/content_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/content_client.h
===================================================================
--- content/common/content_client.h (revision 101488)
+++ content/common/content_client.h (working copy)
@@ -17,7 +17,6 @@
class CommandLine;
class GURL;
struct GPUInfo;
-struct PepperPluginInfo;
namespace IPC {
class Message;
@@ -31,6 +30,12 @@
class TargetPolicy;
}
+namespace webkit {
+namespace ppapi {
+struct PluginInfo;
+}
+}
+
namespace content {
class ContentBrowserClient;
@@ -66,7 +71,8 @@
virtual void SetGpuInfo(const GPUInfo& gpu_info) = 0;
// Gives the embedder a chance to register its own pepper plugins.
- virtual void AddPepperPlugins(std::vector<PepperPluginInfo>* plugins) = 0;
+ virtual void AddPepperPlugins(
+ std::vector<webkit::ppapi::PluginInfo>* plugins) = 0;
// Returns whether the given message should be allowed to be sent from a
// swapped out renderer.
« no previous file with comments | « content/browser/ppapi_plugin_process_host.cc ('k') | content/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698