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

Unified Diff: ppapi/shared_impl/ppb_graphics_3d_shared.h

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_font_shared.cc ('k') | ppapi/shared_impl/ppb_graphics_3d_shared.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/ppb_graphics_3d_shared.h
diff --git a/ppapi/shared_impl/graphics_3d_impl.h b/ppapi/shared_impl/ppb_graphics_3d_shared.h
similarity index 92%
rename from ppapi/shared_impl/graphics_3d_impl.h
rename to ppapi/shared_impl/ppb_graphics_3d_shared.h
index 07fe967f1ee11c4242993ed3df5c3d7db0b254da..6f3a04f2a0dc51a872ccdbcdc0d4a4ea0d7a23d5 100644
--- a/ppapi/shared_impl/graphics_3d_impl.h
+++ b/ppapi/shared_impl/ppb_graphics_3d_shared.h
@@ -21,7 +21,8 @@ class GLES2Implementation;
namespace ppapi {
-class PPAPI_SHARED_EXPORT Graphics3DImpl : public thunk::PPB_Graphics3D_API {
+class PPAPI_SHARED_EXPORT PPB_Graphics3D_Shared
+ : public thunk::PPB_Graphics3D_API {
public:
// PPB_Graphics3D_API implementation.
virtual int32_t GetAttribs(int32_t* attrib_list) OVERRIDE;
@@ -48,8 +49,8 @@ class PPAPI_SHARED_EXPORT Graphics3DImpl : public thunk::PPB_Graphics3D_API {
void SwapBuffersACK(int32_t pp_error);
protected:
- Graphics3DImpl();
- virtual ~Graphics3DImpl();
+ PPB_Graphics3D_Shared();
+ virtual ~PPB_Graphics3D_Shared();
virtual gpu::CommandBuffer* GetCommandBuffer() = 0;
virtual int32 DoSwapBuffers() = 0;
@@ -67,7 +68,7 @@ class PPAPI_SHARED_EXPORT Graphics3DImpl : public thunk::PPB_Graphics3D_API {
// Callback that needs to be executed when swap-buffers is completed.
PP_CompletionCallback swap_callback_;
- DISALLOW_COPY_AND_ASSIGN(Graphics3DImpl);
+ DISALLOW_COPY_AND_ASSIGN(PPB_Graphics3D_Shared);
};
} // namespace ppapi
« no previous file with comments | « ppapi/shared_impl/ppb_font_shared.cc ('k') | ppapi/shared_impl/ppb_graphics_3d_shared.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698