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

Unified Diff: webkit/plugins/ppapi/ppapi_plugin_instance.h

Issue 11053003: Migrate Graphics2D to new design. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fix DEPS Created 8 years, 2 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
Index: webkit/plugins/ppapi/ppapi_plugin_instance.h
diff --git a/webkit/plugins/ppapi/ppapi_plugin_instance.h b/webkit/plugins/ppapi/ppapi_plugin_instance.h
index be8f76b264787c36abc4372bceb7ff56f35b4f96..c2b96212c13c763ca3027ebb4ffe77b9799692d7 100644
--- a/webkit/plugins/ppapi/ppapi_plugin_instance.h
+++ b/webkit/plugins/ppapi/ppapi_plugin_instance.h
@@ -71,6 +71,10 @@ struct WebCursorInfo;
struct WebPrintParams;
}
+namespace content {
+class PepperGraphics2DHost;
+}
+
namespace media {
class DecoderBuffer;
class DecryptorClient;
@@ -95,7 +99,6 @@ class MessageChannel;
class PluginDelegate;
class PluginModule;
class PluginObject;
-class PPB_Graphics2D_Impl;
class PPB_Graphics3D_Impl;
class PPB_ImageData_Impl;
class PPB_URLLoader_Impl;
@@ -523,7 +526,7 @@ class WEBKIT_PLUGINS_EXPORT PluginInstance :
// Get the bound graphics context as a concrete 2D graphics context or returns
// null if the context is not 2D.
- PPB_Graphics2D_Impl* GetBoundGraphics2D() const;
+ PluginDelegate::PlatformGraphics2D* GetBoundGraphics2D() const;
// Get the bound 3D graphics context.
// Returns NULL if bound graphics is not a 3D context.
@@ -605,6 +608,7 @@ class WEBKIT_PLUGINS_EXPORT PluginInstance :
// The current device context for painting in 2D or 3D.
scoped_refptr< ::ppapi::Resource> bound_graphics_;
+ PluginDelegate::PlatformGraphics2D* graphics_2d_platform_;
// We track two types of focus, one from WebKit, which is the focus among
// all elements of the page, one one from the browser, which is whether the

Powered by Google App Engine
This is Rietveld 408576698