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

Unified Diff: ppapi/proxy/plugin_array_buffer_var.h

Issue 631733002: Replacing the OVERRIDE with override and FINAL with 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
Index: ppapi/proxy/plugin_array_buffer_var.h
diff --git a/ppapi/proxy/plugin_array_buffer_var.h b/ppapi/proxy/plugin_array_buffer_var.h
index 84d9d217708e6a9c408cd64ed1b2c4225ee26172..efe90403286c944e3f7c91f6f1a241777c65eeb8 100644
--- a/ppapi/proxy/plugin_array_buffer_var.h
+++ b/ppapi/proxy/plugin_array_buffer_var.h
@@ -26,13 +26,13 @@ class PluginArrayBufferVar : public ArrayBufferVar {
virtual ~PluginArrayBufferVar();
// 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_handle,
- base::SharedMemoryHandle* plugin_handle) OVERRIDE;
+ base::SharedMemoryHandle* plugin_handle) override;
private:
// Non-shared memory

Powered by Google App Engine
This is Rietveld 408576698