| Index: content/renderer/pepper/ppb_graphics_3d_impl.h
|
| diff --git a/content/renderer/pepper/ppb_graphics_3d_impl.h b/content/renderer/pepper/ppb_graphics_3d_impl.h
|
| index 5ad1fce6d2d5b3a6aa3a06ca1f944de3599c5a41..08424564fc124350af271158bcef318b301171d1 100644
|
| --- a/content/renderer/pepper/ppb_graphics_3d_impl.h
|
| +++ b/content/renderer/pepper/ppb_graphics_3d_impl.h
|
| @@ -27,19 +27,19 @@ class PPB_Graphics3D_Impl : public ppapi::PPB_Graphics3D_Shared {
|
| base::SharedMemoryHandle* shared_state_handle);
|
|
|
| // PPB_Graphics3D_API trusted implementation.
|
| - virtual PP_Bool SetGetBuffer(int32_t transfer_buffer_id) OVERRIDE;
|
| + virtual PP_Bool SetGetBuffer(int32_t transfer_buffer_id) override;
|
| virtual scoped_refptr<gpu::Buffer> CreateTransferBuffer(uint32_t size,
|
| - int32* id) OVERRIDE;
|
| - virtual PP_Bool DestroyTransferBuffer(int32_t id) OVERRIDE;
|
| - virtual PP_Bool Flush(int32_t put_offset) OVERRIDE;
|
| + int32* id) override;
|
| + virtual PP_Bool DestroyTransferBuffer(int32_t id) override;
|
| + virtual PP_Bool Flush(int32_t put_offset) 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) OVERRIDE;
|
| + override;
|
| + virtual uint32_t InsertSyncPoint() override;
|
| + virtual uint32_t InsertFutureSyncPoint() override;
|
| + virtual void RetireSyncPoint(uint32_t) override;
|
|
|
| // Binds/unbinds the graphics of this context with the associated instance.
|
| // Returns true if binding/unbinding is successful.
|
| @@ -65,9 +65,9 @@ class PPB_Graphics3D_Impl : public ppapi::PPB_Graphics3D_Shared {
|
| protected:
|
| virtual ~PPB_Graphics3D_Impl();
|
| // ppapi::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;
|
|
|
| private:
|
| explicit PPB_Graphics3D_Impl(PP_Instance instance);
|
|
|