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

Unified Diff: content/renderer/pepper/ppb_buffer_impl.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (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 | « content/renderer/pepper/ppb_broker_impl.h ('k') | content/renderer/pepper/ppb_flash_message_loop_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/ppb_buffer_impl.h
diff --git a/content/renderer/pepper/ppb_buffer_impl.h b/content/renderer/pepper/ppb_buffer_impl.h
index 76526229a4a59a13a525f8b72e2002331a7dc226..b2c316b32e22aa078bdf8ecfbdbca18ebbf83d96 100644
--- a/content/renderer/pepper/ppb_buffer_impl.h
+++ b/content/renderer/pepper/ppb_buffer_impl.h
@@ -27,16 +27,16 @@ class PPB_Buffer_Impl : public ppapi::Resource,
uint32_t size() const { return size_; }
// Resource overrides.
- virtual ppapi::thunk::PPB_Buffer_API* AsPPB_Buffer_API() OVERRIDE;
+ virtual ppapi::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;
+ virtual PP_Bool Describe(uint32_t* size_in_bytes) override;
+ virtual PP_Bool IsMapped() override;
+ virtual void* Map() override;
+ virtual void Unmap() override;
// Trusted.
- virtual int32_t GetSharedMemory(int* handle) OVERRIDE;
+ virtual int32_t GetSharedMemory(int* handle) override;
private:
virtual ~PPB_Buffer_Impl();
« no previous file with comments | « content/renderer/pepper/ppb_broker_impl.h ('k') | content/renderer/pepper/ppb_flash_message_loop_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698