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

Unified Diff: extensions/browser/extension_function_dispatcher.cc

Issue 664933004: Standardize usage of virtual/override/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/browser/extension_function.cc ('k') | extensions/browser/extension_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/extension_function_dispatcher.cc
diff --git a/extensions/browser/extension_function_dispatcher.cc b/extensions/browser/extension_function_dispatcher.cc
index b4924b21fca6994cbf367a2ec6bd1c8d6638d188..f9bbec561b911df0eadb21606c01769ed0b4916f 100644
--- a/extensions/browser/extension_function_dispatcher.cc
+++ b/extensions/browser/extension_function_dispatcher.cc
@@ -152,12 +152,10 @@ class ExtensionFunctionDispatcher::UIThreadResponseCallbackWrapper
weak_ptr_factory_(this) {
}
- virtual ~UIThreadResponseCallbackWrapper() {
- }
+ ~UIThreadResponseCallbackWrapper() override {}
// content::WebContentsObserver overrides.
- virtual void RenderViewDeleted(
- RenderViewHost* render_view_host) override {
+ void RenderViewDeleted(RenderViewHost* render_view_host) override {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (render_view_host != render_view_host_)
return;
« no previous file with comments | « extensions/browser/extension_function.cc ('k') | extensions/browser/extension_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698