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

Unified Diff: content/renderer/web_ui_runner.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/web_ui_mojo_context_state.h ('k') | content/renderer/websharedworker_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/web_ui_runner.h
diff --git a/content/renderer/web_ui_runner.h b/content/renderer/web_ui_runner.h
index c80b5c9a07fd1eee83383a68e682e8587244e5ca..2f17ab59deb79c994df2f34bbbdc7463b3adfc69 100644
--- a/content/renderer/web_ui_runner.h
+++ b/content/renderer/web_ui_runner.h
@@ -18,16 +18,16 @@ class WebUIRunner : public gin::Runner {
public:
// Does not take ownership of ContextHolder.
WebUIRunner(blink::WebFrame* frame, gin::ContextHolder* context_holder);
- virtual ~WebUIRunner();
+ ~WebUIRunner() override;
// Runner overrides:
- virtual void Run(const std::string& source,
- 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;
+ void Run(const std::string& source,
+ const std::string& resource_name) override;
+ v8::Handle<v8::Value> Call(v8::Handle<v8::Function> function,
+ v8::Handle<v8::Value> receiver,
+ int argc,
+ v8::Handle<v8::Value> argv[]) override;
+ gin::ContextHolder* GetContextHolder() override;
private:
// Frame to execute script in.
« no previous file with comments | « content/renderer/web_ui_mojo_context_state.h ('k') | content/renderer/websharedworker_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698