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

Unified Diff: content/renderer/pepper/v8object_var.h

Issue 670683003: Standardize usage of virtual/override/final in content/renderer/ (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
« no previous file with comments | « content/renderer/pepper/v8_var_converter_unittest.cc ('k') | content/renderer/pepper/video_decoder_shim.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/v8object_var.h
diff --git a/content/renderer/pepper/v8object_var.h b/content/renderer/pepper/v8object_var.h
index f6cc206c42ebc5fbc8199f53b7fa76c491f0e4b1..0480fbe824555faee3c1257fd4468b1b86cd0e0b 100644
--- a/content/renderer/pepper/v8object_var.h
+++ b/content/renderer/pepper/v8object_var.h
@@ -33,8 +33,8 @@ class CONTENT_EXPORT V8ObjectVar : public Var {
V8ObjectVar(PP_Instance instance, v8::Handle<v8::Object> v8_object);
// Var overrides.
- virtual V8ObjectVar* AsV8ObjectVar() override;
- virtual PP_VarType GetType() const override;
+ V8ObjectVar* AsV8ObjectVar() override;
+ PP_VarType GetType() const override;
// Returns the underlying v8 object corresponding to this V8ObjectVar. This
// should only be used on the stack.
@@ -52,7 +52,7 @@ class CONTENT_EXPORT V8ObjectVar : public Var {
static scoped_refptr<V8ObjectVar> FromPPVar(PP_Var var);
private:
- virtual ~V8ObjectVar();
+ ~V8ObjectVar() override;
content::PepperPluginInstanceImpl* instance_;
« no previous file with comments | « content/renderer/pepper/v8_var_converter_unittest.cc ('k') | content/renderer/pepper/video_decoder_shim.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698