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

Unified Diff: ppapi/proxy/proxy_object_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/proxy_channel.h ('k') | ppapi/proxy/raw_var_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/proxy_object_var.h
diff --git a/ppapi/proxy/proxy_object_var.h b/ppapi/proxy/proxy_object_var.h
index e90b29f3b2bfb1ad6a1e89b3fd02c0b781a464b7..a3ba1533944f730b7717a156f4688e787a0c4d6b 100644
--- a/ppapi/proxy/proxy_object_var.h
+++ b/ppapi/proxy/proxy_object_var.h
@@ -23,11 +23,11 @@ class PPAPI_PROXY_EXPORT ProxyObjectVar : public Var {
ProxyObjectVar(proxy::PluginDispatcher* dispatcher,
int32 host_var_id);
- virtual ~ProxyObjectVar();
+ ~ProxyObjectVar() override;
// Var overrides.
- virtual ProxyObjectVar* AsProxyObjectVar() override;
- virtual PP_VarType GetType() const override;
+ ProxyObjectVar* AsProxyObjectVar() override;
+ PP_VarType GetType() const override;
proxy::PluginDispatcher* dispatcher() const { return dispatcher_; }
int32 host_var_id() const { return host_var_id_; }
« no previous file with comments | « ppapi/proxy/proxy_channel.h ('k') | ppapi/proxy/raw_var_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698