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

Unified Diff: ppapi/proxy/ppb_buffer_proxy.h

Issue 1097393007: Update {virtual,override} to follow C++11 style in ppapi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Split off one file into separate review. Created 5 years, 8 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_broker_proxy.cc ('k') | ppapi/proxy/ppb_flash_message_loop_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_buffer_proxy.h
diff --git a/ppapi/proxy/ppb_buffer_proxy.h b/ppapi/proxy/ppb_buffer_proxy.h
index 7566c08cf1a4aa1fe1dfdd1103f299b9bc52b335..b1484947ecb18c7156c58c1ae7db75cc19f65926 100644
--- a/ppapi/proxy/ppb_buffer_proxy.h
+++ b/ppapi/proxy/ppb_buffer_proxy.h
@@ -24,19 +24,19 @@ class Buffer : public thunk::PPB_Buffer_API, public Resource {
Buffer(const HostResource& resource,
const base::SharedMemoryHandle& shm_handle,
uint32_t size);
- virtual ~Buffer();
+ ~Buffer() override;
// Resource overrides.
- virtual thunk::PPB_Buffer_API* AsPPB_Buffer_API() override;
+ thunk::PPB_Buffer_API* AsPPB_Buffer_API() override;
// PPB_Buffer_API implementation.
- virtual PP_Bool Describe(uint32_t* size_in_bytes) override;
- virtual PP_Bool IsMapped() override;
- virtual void* Map() override;
- virtual void Unmap() override;
+ PP_Bool Describe(uint32_t* size_in_bytes) override;
+ PP_Bool IsMapped() override;
+ void* Map() override;
+ void Unmap() override;
// Trusted
- virtual int32_t GetSharedMemory(int* handle) override;
+ int32_t GetSharedMemory(int* handle) override;
private:
base::SharedMemory shm_;
« no previous file with comments | « ppapi/proxy/ppb_broker_proxy.cc ('k') | ppapi/proxy/ppb_flash_message_loop_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698