Chromium Code Reviews

Unified Diff: ppapi/proxy/proxy_object_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.
Jump to:
View side-by-side diff with in-line comments
Index: ppapi/proxy/proxy_object_var.h
diff --git a/ppapi/proxy/proxy_object_var.h b/ppapi/proxy/proxy_object_var.h
index 599105352ec9cb3fc20e13a7d7e499b876eae382..e90b29f3b2bfb1ad6a1e89b3fd02c0b781a464b7 100644
--- a/ppapi/proxy/proxy_object_var.h
+++ b/ppapi/proxy/proxy_object_var.h
@@ -26,8 +26,8 @@ class PPAPI_PROXY_EXPORT ProxyObjectVar : public Var {
virtual ~ProxyObjectVar();
// Var overrides.
- virtual ProxyObjectVar* AsProxyObjectVar() OVERRIDE;
- virtual PP_VarType GetType() const OVERRIDE;
+ virtual ProxyObjectVar* AsProxyObjectVar() override;
+ virtual PP_VarType GetType() const override;
proxy::PluginDispatcher* dispatcher() const { return dispatcher_; }
int32 host_var_id() const { return host_var_id_; }

Powered by Google App Engine