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

Unified Diff: webkit/plugins/ppapi/plugin_module.cc

Issue 10354004: Move gles2 extensions out of dev. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 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 | « ppapi/shared_impl/ppb_opengles2_shared.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/plugin_module.cc
===================================================================
--- webkit/plugins/ppapi/plugin_module.cc (revision 135658)
+++ webkit/plugins/ppapi/plugin_module.cc (working copy)
@@ -323,17 +323,19 @@
return ::ppapi::thunk::GetPPB_Instance_Private_0_1_Thunk();
if (strcmp(name, PPB_OPENGLES2_INTERFACE) == 0)
Wez 2012/05/14 22:33:15 This and the rest of the non-dev PPB_OPENGLES2_<fo
return ::ppapi::PPB_OpenGLES2_Shared::GetInterface();
- if (strcmp(name, PPB_OPENGLES2_INSTANCEDARRAYS_DEV_INTERFACE) == 0)
+ if (strcmp(name, PPB_OPENGLES2_INSTANCEDARRAYS_INTERFACE) == 0)
return ::ppapi::PPB_OpenGLES2_Shared::GetInstancedArraysInterface();
- if (strcmp(name, PPB_OPENGLES2_FRAMEBUFFERBLIT_DEV_INTERFACE) == 0)
+ if (strcmp(name, PPB_OPENGLES2_FRAMEBUFFERBLIT_INTERFACE) == 0)
return ::ppapi::PPB_OpenGLES2_Shared::GetFramebufferBlitInterface();
- if (strcmp(name, PPB_OPENGLES2_FRAMEBUFFERMULTISAMPLE_DEV_INTERFACE) == 0)
+ if (strcmp(name, PPB_OPENGLES2_FRAMEBUFFERMULTISAMPLE_INTERFACE) == 0)
return ::ppapi::PPB_OpenGLES2_Shared::GetFramebufferMultisampleInterface();
- if (strcmp(name, PPB_OPENGLES2_CHROMIUMENABLEFEATURE_DEV_INTERFACE) == 0)
+ if (strcmp(name, PPB_OPENGLES2_CHROMIUMENABLEFEATURE_INTERFACE) == 0)
return ::ppapi::PPB_OpenGLES2_Shared::GetChromiumEnableFeatureInterface();
- if (strcmp(name, PPB_OPENGLES2_CHROMIUMMAPSUB_DEV_INTERFACE) == 0)
+ if (strcmp(name, PPB_OPENGLES2_CHROMIUMMAPSUB_INTERFACE) == 0)
return ::ppapi::PPB_OpenGLES2_Shared::GetChromiumMapSubInterface();
- if (strcmp(name, PPB_OPENGLES2_QUERY_DEV_INTERFACE) == 0)
+ if (strcmp(name, PPB_OPENGLES2_CHROMIUMMAPSUB_DEV_INTERFACE_1_0) == 0)
+ return ::ppapi::PPB_OpenGLES2_Shared::GetChromiumMapSubInterface();
+ if (strcmp(name, PPB_OPENGLES2_QUERY_INTERFACE) == 0)
return ::ppapi::PPB_OpenGLES2_Shared::GetQueryInterface();
if (strcmp(name, PPB_PROXY_PRIVATE_INTERFACE) == 0)
return PPB_Proxy_Impl::GetInterface();
« no previous file with comments | « ppapi/shared_impl/ppb_opengles2_shared.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698