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

Unified Diff: ppapi/shared_impl/array_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/websocket_resource.h ('k') | ppapi/shared_impl/dictionary_var.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/array_var.h
diff --git a/ppapi/shared_impl/array_var.h b/ppapi/shared_impl/array_var.h
index 84515d0ee8b5de664dffa7c92262bccb309a453d..2e3ab02861b06113c60beb747b693d715e74ea60 100644
--- a/ppapi/shared_impl/array_var.h
+++ b/ppapi/shared_impl/array_var.h
@@ -28,8 +28,8 @@ class PPAPI_SHARED_EXPORT ArrayVar : public Var {
static ArrayVar* FromPPVar(const PP_Var& var);
// Var overrides.
- virtual ArrayVar* AsArrayVar() override;
- virtual PP_VarType GetType() const override;
+ ArrayVar* AsArrayVar() override;
+ PP_VarType GetType() const override;
// The returned PP_Var has had a ref added on behalf of the caller.
PP_Var Get(uint32_t index) const;
@@ -42,7 +42,7 @@ class PPAPI_SHARED_EXPORT ArrayVar : public Var {
ElementVector& elements() { return elements_; }
protected:
- virtual ~ArrayVar();
+ ~ArrayVar() override;
private:
ElementVector elements_;
« no previous file with comments | « ppapi/proxy/websocket_resource.h ('k') | ppapi/shared_impl/dictionary_var.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698