| 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_;
|
|
|
|
|