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

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

Issue 7576012: Removed config management from Graphics3D API. It will be better handled in the EGL helper library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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/ppb_graphics_3d_impl.h
===================================================================
--- webkit/plugins/ppapi/ppb_graphics_3d_impl.h (revision 95134)
+++ webkit/plugins/ppapi/ppb_graphics_3d_impl.h (working copy)
@@ -19,11 +19,9 @@
virtual ~PPB_Graphics3D_Impl();
static PP_Resource Create(PluginInstance* instance,
- PP_Config3D_Dev config,
PP_Resource share_context,
const int32_t* attrib_list);
static PP_Resource CreateRaw(PluginInstance* instance,
- PP_Config3D_Dev config,
PP_Resource share_context,
const int32_t* attrib_list);
@@ -67,11 +65,9 @@
private:
explicit PPB_Graphics3D_Impl(PluginInstance* instance);
- bool Init(PP_Config3D_Dev config,
- PP_Resource share_context,
+ bool Init(PP_Resource share_context,
const int32_t* attrib_list);
- bool InitRaw(PP_Config3D_Dev config,
- PP_Resource share_context,
+ bool InitRaw(PP_Resource share_context,
const int32_t* attrib_list);
// Notifications received from the GPU process.

Powered by Google App Engine
This is Rietveld 408576698