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

Unified Diff: extensions/renderer/script_context.h

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/safe_builtins.cc ('k') | extensions/renderer/script_injection_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/script_context.h
diff --git a/extensions/renderer/script_context.h b/extensions/renderer/script_context.h
index 88b596adfa1adf4a1eb9be4bf70cced3cf66100d..5c40dfb67951761eaffb43cf1cd19ef2667dad9a 100644
--- a/extensions/renderer/script_context.h
+++ b/extensions/renderer/script_context.h
@@ -133,21 +133,21 @@ class ScriptContext : public RequestSender::Source, public gin::Runner {
bool match_about_blank);
// RequestSender::Source implementation.
- virtual ScriptContext* GetContext() OVERRIDE;
+ virtual ScriptContext* GetContext() override;
virtual void OnResponseReceived(const std::string& name,
int request_id,
bool success,
const base::ListValue& response,
- const std::string& error) OVERRIDE;
+ const std::string& error) override;
// gin::Runner overrides.
virtual void Run(const std::string& source,
- const std::string& resource_name) OVERRIDE;
+ const std::string& resource_name) override;
virtual v8::Handle<v8::Value> Call(v8::Handle<v8::Function> function,
v8::Handle<v8::Value> receiver,
int argc,
- v8::Handle<v8::Value> argv[]) OVERRIDE;
- virtual gin::ContextHolder* GetContextHolder() OVERRIDE;
+ v8::Handle<v8::Value> argv[]) override;
+ virtual gin::ContextHolder* GetContextHolder() override;
protected:
// The v8 context the bindings are accessible to.
« no previous file with comments | « extensions/renderer/safe_builtins.cc ('k') | extensions/renderer/script_injection_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698