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

Unified Diff: chrome/browser/external_protocol/external_protocol_observer.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (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
Index: chrome/browser/external_protocol/external_protocol_observer.h
diff --git a/chrome/browser/external_protocol/external_protocol_observer.h b/chrome/browser/external_protocol/external_protocol_observer.h
index 206d523f30cd2c178e193aa197aab8e74e31166e..56a653f5d9e0f495f849a55cb3ff4828552e99e9 100644
--- a/chrome/browser/external_protocol/external_protocol_observer.h
+++ b/chrome/browser/external_protocol/external_protocol_observer.h
@@ -14,10 +14,10 @@ class ExternalProtocolObserver
: public content::WebContentsObserver,
public content::WebContentsUserData<ExternalProtocolObserver> {
public:
- virtual ~ExternalProtocolObserver();
+ ~ExternalProtocolObserver() override;
// content::WebContentsObserver overrides.
- virtual void DidGetUserGesture() override;
+ void DidGetUserGesture() override;
private:
explicit ExternalProtocolObserver(content::WebContents* web_contents);
« no previous file with comments | « chrome/browser/external_protocol/external_protocol_handler_unittest.cc ('k') | chrome/browser/fast_shutdown_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698