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

Unified Diff: chrome/browser/google/google_url_tracker_navigation_helper_impl.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
« no previous file with comments | « chrome/browser/google/google_url_tracker_factory.h ('k') | chrome/browser/gpu/gl_string_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/google/google_url_tracker_navigation_helper_impl.h
diff --git a/chrome/browser/google/google_url_tracker_navigation_helper_impl.h b/chrome/browser/google/google_url_tracker_navigation_helper_impl.h
index 37acf8c8325649e33f223ecf39cc8f8b93e07184..a0a33598368e6c620d040adbad35a23db627597e 100644
--- a/chrome/browser/google/google_url_tracker_navigation_helper_impl.h
+++ b/chrome/browser/google/google_url_tracker_navigation_helper_impl.h
@@ -20,24 +20,22 @@ class GoogleURLTrackerNavigationHelperImpl
public:
GoogleURLTrackerNavigationHelperImpl(content::WebContents* web_contents,
GoogleURLTracker* tracker);
- virtual ~GoogleURLTrackerNavigationHelperImpl();
+ ~GoogleURLTrackerNavigationHelperImpl() override;
// GoogleURLTrackerNavigationHelper:
- virtual void SetListeningForNavigationCommit(
- bool listen) override;
- virtual bool IsListeningForNavigationCommit() override;
- virtual void SetListeningForTabDestruction(
- bool listen) override;
- virtual bool IsListeningForTabDestruction() override;
- virtual void OpenURL(GURL url,
- WindowOpenDisposition disposition,
- bool user_clicked_on_link) override;
+ void SetListeningForNavigationCommit(bool listen) override;
+ bool IsListeningForNavigationCommit() override;
+ void SetListeningForTabDestruction(bool listen) override;
+ bool IsListeningForTabDestruction() override;
+ void OpenURL(GURL url,
+ WindowOpenDisposition disposition,
+ bool user_clicked_on_link) override;
private:
// content::NotificationObserver:
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
content::WebContents* web_contents_;
content::NotificationRegistrar registrar_;
« no previous file with comments | « chrome/browser/google/google_url_tracker_factory.h ('k') | chrome/browser/gpu/gl_string_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698