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

Unified Diff: extensions/renderer/console.cc

Issue 622343002: replace OVERRIDE and FINAL with override and final in extensions/ (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 | « extensions/renderer/binding_generating_native_handler.h ('k') | extensions/renderer/content_watcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/console.cc
diff --git a/extensions/renderer/console.cc b/extensions/renderer/console.cc
index 742910464027eb1f851fa9e21cc03796d38e1e74..f48678c4202d736b2aa6be2312aebc16573919b4 100644
--- a/extensions/renderer/console.cc
+++ b/extensions/renderer/console.cc
@@ -37,7 +37,7 @@ class ByContextFinder : public content::RenderViewVisitor {
explicit ByContextFinder(v8::Handle<v8::Context> context)
: context_(context), found_(NULL) {}
- virtual bool Visit(content::RenderView* render_view) OVERRIDE {
+ virtual bool Visit(content::RenderView* render_view) override {
ExtensionHelper* helper = ExtensionHelper::Get(render_view);
if (helper &&
helper->dispatcher()->script_context_set().GetByV8Context(context_)) {
« no previous file with comments | « extensions/renderer/binding_generating_native_handler.h ('k') | extensions/renderer/content_watcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698