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 26878096ac026b5fab71ae6870b0eacf3ffe0b4e..2e0d567be333186bba2a698ac5aa297351115be6 100644 |
--- a/chrome/browser/google/chrome_google_url_tracker_client.h |
+++ b/chrome/browser/google/chrome_google_url_tracker_client.h |
@@ -6,34 +6,22 @@ |
#define CHROME_BROWSER_GOOGLE_CHROME_GOOGLE_URL_TRACKER_CLIENT_H_ |
#include "components/google/core/browser/google_url_tracker_client.h" |
-#include "content/public/browser/notification_observer.h" |
-#include "content/public/browser/notification_registrar.h" |
class Profile; |
-class ChromeGoogleURLTrackerClient : public GoogleURLTrackerClient, |
- public content::NotificationObserver { |
+class ChromeGoogleURLTrackerClient : public GoogleURLTrackerClient { |
public: |
explicit ChromeGoogleURLTrackerClient(Profile* profile); |
~ChromeGoogleURLTrackerClient() override; |
// GoogleURLTrackerClient: |
- void SetListeningForNavigationStart(bool listen) override; |
- bool IsListeningForNavigationStart() override; |
bool IsBackgroundNetworkingEnabled() override; |
PrefService* GetPrefs() override; |
net::URLRequestContextGetter* GetRequestContext() override; |
private: |
- // content::NotificationObserver: |
- void Observe(int type, |
- const content::NotificationSource& source, |
- const content::NotificationDetails& details) override; |
- |
Profile* profile_; |
- content::NotificationRegistrar registrar_; |
- |
DISALLOW_COPY_AND_ASSIGN(ChromeGoogleURLTrackerClient); |
}; |