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

Unified Diff: chrome/browser/google/chrome_google_url_tracker_client.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/google/chrome_google_url_tracker_client.h
diff --git a/chrome/browser/google/chrome_google_url_tracker_client.h b/chrome/browser/google/chrome_google_url_tracker_client.h
index 2512da35a9283fd06688422223ba335ebba9815b..26878096ac026b5fab71ae6870b0eacf3ffe0b4e 100644
--- a/chrome/browser/google/chrome_google_url_tracker_client.h
+++ b/chrome/browser/google/chrome_google_url_tracker_client.h
@@ -15,20 +15,20 @@ class ChromeGoogleURLTrackerClient : public GoogleURLTrackerClient,
public content::NotificationObserver {
public:
explicit ChromeGoogleURLTrackerClient(Profile* profile);
- virtual ~ChromeGoogleURLTrackerClient();
+ ~ChromeGoogleURLTrackerClient() override;
// GoogleURLTrackerClient:
- virtual void SetListeningForNavigationStart(bool listen) override;
- virtual bool IsListeningForNavigationStart() override;
- virtual bool IsBackgroundNetworkingEnabled() override;
- virtual PrefService* GetPrefs() override;
- virtual net::URLRequestContextGetter* GetRequestContext() override;
+ void SetListeningForNavigationStart(bool listen) override;
+ bool IsListeningForNavigationStart() override;
+ bool IsBackgroundNetworkingEnabled() override;
+ PrefService* GetPrefs() override;
+ net::URLRequestContextGetter* GetRequestContext() 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;
Profile* profile_;
« no previous file with comments | « chrome/browser/geolocation/geolocation_permission_context_unittest.cc ('k') | chrome/browser/google/google_search_counter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698