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

Unified Diff: ppapi/shared_impl/ppb_opengles2_shared.cc

Issue 8790004: Rename the shared impl files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged 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
« no previous file with comments | « ppapi/shared_impl/ppb_opengles2_shared.h ('k') | ppapi/shared_impl/ppb_url_request_info_shared.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/ppb_opengles2_shared.cc
diff --git a/ppapi/shared_impl/opengles2_impl.cc b/ppapi/shared_impl/ppb_opengles2_shared.cc
similarity index 99%
rename from ppapi/shared_impl/opengles2_impl.cc
rename to ppapi/shared_impl/ppb_opengles2_shared.cc
index 2743d2ebbcb4beabd95a22b714dbd9641cc61cce..635ea410ce7047607b219dfc7ee71537ae16f7bd 100644
--- a/ppapi/shared_impl/opengles2_impl.cc
+++ b/ppapi/shared_impl/ppb_opengles2_shared.cc
@@ -6,11 +6,11 @@
// gpu/command_buffer/build_gles2_cmd_buffer.py
// DO NOT EDIT!
-#include "ppapi/shared_impl/opengles2_impl.h"
+#include "ppapi/shared_impl/ppb_opengles2_shared.h"
#include "base/logging.h"
#include "gpu/command_buffer/client/gles2_implementation.h"
-#include "ppapi/shared_impl/graphics_3d_impl.h"
+#include "ppapi/shared_impl/ppb_graphics_3d_shared.h"
#include "ppapi/thunk/enter.h"
namespace ppapi {
@@ -20,7 +20,7 @@ namespace {
gpu::gles2::GLES2Implementation* GetGLES(PP_Resource context) {
thunk::EnterResource<thunk::PPB_Graphics3D_API> enter_g3d(context, false);
DCHECK(enter_g3d.succeeded());
- return static_cast<Graphics3DImpl*>(enter_g3d.object())->gles2_impl();
+ return static_cast<PPB_Graphics3D_Shared*>(enter_g3d.object())->gles2_impl();
}
void ActiveTexture(PP_Resource context_id, GLenum texture) {
@@ -891,7 +891,7 @@ const struct PPB_OpenGLES2 ppb_opengles2 = {
} // namespace
-const PPB_OpenGLES2* OpenGLES2Impl::GetInterface() {
+const PPB_OpenGLES2* PPB_OpenGLES2_Shared::GetInterface() {
return &ppb_opengles2;
}
« no previous file with comments | « ppapi/shared_impl/ppb_opengles2_shared.h ('k') | ppapi/shared_impl/ppb_url_request_info_shared.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698