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

Unified Diff: src/bootstrapper.h

Issue 797943002: Consistently use only one of virtual/OVERRIDE/FINAL. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Removed temporary hack. Created 6 years 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 | « src/base/platform/time.cc ('k') | src/code-stubs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/bootstrapper.h
diff --git a/src/bootstrapper.h b/src/bootstrapper.h
index 0cc84861b3e9711876aa9b04e4b2817609e77f8e..9d4f270842d3121a51b6081361019972db45eaf0 100644
--- a/src/bootstrapper.h
+++ b/src/bootstrapper.h
@@ -158,8 +158,8 @@ class NativesExternalStringResource FINAL
NativesExternalStringResource(Bootstrapper* bootstrapper,
const char* source,
size_t length);
- virtual const char* data() const OVERRIDE { return data_; }
- virtual size_t length() const OVERRIDE { return length_; }
+ const char* data() const OVERRIDE { return data_; }
+ size_t length() const OVERRIDE { return length_; }
private:
const char* data_;
« no previous file with comments | « src/base/platform/time.cc ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698