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

Unified Diff: chrome/browser/ui/navigation_correction_tab_observer.h

Issue 294563002: Revert of Elimate NOTIFICATION_GOOGLE_URL_UPDATED (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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/ui/navigation_correction_tab_observer.h
diff --git a/chrome/browser/ui/navigation_correction_tab_observer.h b/chrome/browser/ui/navigation_correction_tab_observer.h
index f3cb64d4a32cbb28a854c776dde9cacf1e5efe67..795afa6ed452991bc326430e6a9714ed69d68a5a 100644
--- a/chrome/browser/ui/navigation_correction_tab_observer.h
+++ b/chrome/browser/ui/navigation_correction_tab_observer.h
@@ -6,7 +6,8 @@
#define CHROME_BROWSER_UI_NAVIGATION_CORRECTION_TAB_OBSERVER_H_
#include "base/prefs/pref_change_registrar.h"
-#include "chrome/browser/google/google_url_tracker.h"
+#include "content/public/browser/notification_observer.h"
+#include "content/public/browser/notification_registrar.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_contents_user_data.h"
@@ -19,6 +20,7 @@
// Per-tab class to implement navigation suggestion service functionality.
class NavigationCorrectionTabObserver
: public content::WebContentsObserver,
+ public content::NotificationObserver,
public content::WebContentsUserData<NavigationCorrectionTabObserver> {
public:
virtual ~NavigationCorrectionTabObserver();
@@ -33,10 +35,12 @@
virtual void RenderViewCreated(
content::RenderViewHost* render_view_host) OVERRIDE;
+ // content::NotificationObserver overrides:
+ virtual void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) OVERRIDE;
+
// Internal helpers ----------------------------------------------------------
-
- // Callback that is called when the Google URL is updated.
- void OnGoogleURLUpdated(GURL old_url, GURL new_url);
// Returns the URL for the correction service. If the returned URL
// is empty, the default error pages will be used.
@@ -49,8 +53,8 @@
void UpdateNavigationCorrectionInfo(content::RenderViewHost* rvh);
Profile* profile_;
+ content::NotificationRegistrar registrar_;
PrefChangeRegistrar pref_change_registrar_;
- scoped_ptr<GoogleURLTracker::Subscription> google_url_updated_subscription_;
DISALLOW_COPY_AND_ASSIGN(NavigationCorrectionTabObserver);
};
« no previous file with comments | « chrome/browser/google/google_url_tracker_unittest.cc ('k') | chrome/browser/ui/navigation_correction_tab_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698