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

Unified Diff: ppapi/proxy/ppb_graphics_3d_proxy.h

Issue 630883002: replace OVERRIDE and FINAL with override and final in ppapi/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « ppapi/proxy/ppb_flash_message_loop_proxy.cc ('k') | ppapi/proxy/ppb_image_data_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_graphics_3d_proxy.h
diff --git a/ppapi/proxy/ppb_graphics_3d_proxy.h b/ppapi/proxy/ppb_graphics_3d_proxy.h
index 610c3875772c4f341c71b13b2f785e0bae3155f8..2f3f4fb0ae207543609bc1b997250d20b177dcbb 100644
--- a/ppapi/proxy/ppb_graphics_3d_proxy.h
+++ b/ppapi/proxy/ppb_graphics_3d_proxy.h
@@ -36,25 +36,25 @@ class PPAPI_PROXY_EXPORT Graphics3D : public PPB_Graphics3D_Shared {
const SerializedHandle& shared_state);
// Graphics3DTrusted API. These are not implemented in the proxy.
- virtual PP_Bool SetGetBuffer(int32_t shm_id) OVERRIDE;
- virtual PP_Bool Flush(int32_t put_offset) OVERRIDE;
+ virtual PP_Bool SetGetBuffer(int32_t shm_id) override;
+ virtual PP_Bool Flush(int32_t put_offset) override;
virtual scoped_refptr<gpu::Buffer> CreateTransferBuffer(uint32_t size,
- int32* id) OVERRIDE;
- virtual PP_Bool DestroyTransferBuffer(int32_t id) OVERRIDE;
+ int32* id) override;
+ virtual PP_Bool DestroyTransferBuffer(int32_t id) override;
virtual gpu::CommandBuffer::State WaitForTokenInRange(int32_t start,
- int32_t end) OVERRIDE;
+ int32_t end) override;
virtual gpu::CommandBuffer::State WaitForGetOffsetInRange(int32_t start,
int32_t end)
- OVERRIDE;
- virtual uint32_t InsertSyncPoint() OVERRIDE;
- virtual uint32_t InsertFutureSyncPoint() OVERRIDE;
- virtual void RetireSyncPoint(uint32_t sync_point) OVERRIDE;
+ override;
+ virtual uint32_t InsertSyncPoint() override;
+ virtual uint32_t InsertFutureSyncPoint() override;
+ virtual void RetireSyncPoint(uint32_t sync_point) override;
private:
// PPB_Graphics3D_Shared overrides.
- virtual gpu::CommandBuffer* GetCommandBuffer() OVERRIDE;
- virtual gpu::GpuControl* GetGpuControl() OVERRIDE;
- virtual int32 DoSwapBuffers() OVERRIDE;
+ virtual gpu::CommandBuffer* GetCommandBuffer() override;
+ virtual gpu::GpuControl* GetGpuControl() override;
+ virtual int32 DoSwapBuffers() override;
scoped_ptr<PpapiCommandBufferProxy> command_buffer_;
« no previous file with comments | « ppapi/proxy/ppb_flash_message_loop_proxy.cc ('k') | ppapi/proxy/ppb_image_data_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698