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

Unified Diff: ppapi/proxy/plugin_array_buffer_var.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/platform_verification_private_resource.h ('k') | ppapi/proxy/plugin_globals.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 efe90403286c944e3f7c91f6f1a241777c65eeb8..ee9b930645790a6dff51bde4e7a6c59bf4309555 100644
--- a/ppapi/proxy/plugin_array_buffer_var.h
+++ b/ppapi/proxy/plugin_array_buffer_var.h
@@ -23,13 +23,13 @@ class PluginArrayBufferVar : public ArrayBufferVar {
explicit PluginArrayBufferVar(uint32 size_in_bytes);
PluginArrayBufferVar(uint32 size_in_bytes,
base::SharedMemoryHandle plugin_handle);
- virtual ~PluginArrayBufferVar();
+ ~PluginArrayBufferVar() override;
// ArrayBufferVar implementation.
- virtual void* Map() override;
- virtual void Unmap() override;
- virtual uint32 ByteLength() override;
- virtual bool CopyToNewShmem(
+ void* Map() override;
+ void Unmap() override;
+ uint32 ByteLength() override;
+ bool CopyToNewShmem(
PP_Instance instance,
int* host_handle,
base::SharedMemoryHandle* plugin_handle) override;
« no previous file with comments | « ppapi/proxy/platform_verification_private_resource.h ('k') | ppapi/proxy/plugin_globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698