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

Unified Diff: content/renderer/pepper/host_array_buffer_var.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/fake_pepper_plugin_instance.h ('k') | content/renderer/pepper/host_globals.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/host_array_buffer_var.h
diff --git a/content/renderer/pepper/host_array_buffer_var.h b/content/renderer/pepper/host_array_buffer_var.h
index 12ae7291221bea97f918a2952780e1ed2b6c9c76..3e5b5b4d4a5ca8feb7cd7301e2141d8d9f77a482 100644
--- a/content/renderer/pepper/host_array_buffer_var.h
+++ b/content/renderer/pepper/host_array_buffer_var.h
@@ -22,13 +22,13 @@ class HostArrayBufferVar : public ppapi::ArrayBufferVar {
base::SharedMemoryHandle handle);
// ArrayBufferVar implementation.
- virtual void* Map() OVERRIDE;
- virtual void Unmap() OVERRIDE;
- virtual uint32 ByteLength() OVERRIDE;
+ virtual void* Map() override;
+ virtual void Unmap() override;
+ virtual uint32 ByteLength() override;
virtual bool CopyToNewShmem(PP_Instance instance,
int* host_shm_handle_id,
base::SharedMemoryHandle* plugin_shm_handle)
- OVERRIDE;
+ override;
blink::WebArrayBuffer& webkit_buffer() { return buffer_; }
« no previous file with comments | « content/renderer/pepper/fake_pepper_plugin_instance.h ('k') | content/renderer/pepper/host_globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698