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

Unified Diff: chrome/browser/google/google_url_tracker.cc

Issue 293503003: Eliminate dependence of GoogleURLTracker et al. on InfoBarService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Style nits 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/google/google_url_tracker.cc
diff --git a/chrome/browser/google/google_url_tracker.cc b/chrome/browser/google/google_url_tracker.cc
index 4ce89cb7b6def4eca27dfffa066d32f8b6f21674..a7ac93002a685b623122eda7183f04f851678ec6 100644
--- a/chrome/browser/google/google_url_tracker.cc
+++ b/chrome/browser/google/google_url_tracker.cc
@@ -13,14 +13,12 @@
#include "chrome/browser/google/google_url_tracker_infobar_delegate.h"
#include "chrome/browser/google/google_url_tracker_navigation_helper.h"
#include "chrome/browser/google/google_util.h"
-#include "chrome/browser/infobars/infobar_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/pref_names.h"
#include "components/google/core/browser/google_url_tracker_client.h"
#include "components/infobars/core/infobar.h"
-#include "content/public/browser/navigation_controller.h"
-#include "content/public/browser/navigation_entry.h"
+#include "components/infobars/core/infobar_manager.h"
#include "content/public/browser/notification_service.h"
#include "net/base/load_flags.h"
#include "net/base/net_util.h"
@@ -208,11 +206,11 @@ void GoogleURLTracker::Shutdown() {
net::NetworkChangeNotifier::RemoveIPAddressObserver(this);
}
-void GoogleURLTracker::DeleteMapEntryForService(
- const InfoBarService* infobar_service) {
- // WARNING: |infobar_service| may point to a deleted object. Do not
+void GoogleURLTracker::DeleteMapEntryForManager(
+ const infobars::InfoBarManager* infobar_manager) {
+ // WARNING: |infobar_manager| may point to a deleted object. Do not
// dereference it! See OnTabClosed().
- EntryMap::iterator i(entry_map_.find(infobar_service));
+ EntryMap::iterator i(entry_map_.find(infobar_manager));
DCHECK(i != entry_map_.end());
GoogleURLTrackerMapEntry* map_entry = i->second;
@@ -279,11 +277,11 @@ void GoogleURLTracker::SearchCommitted() {
void GoogleURLTracker::OnNavigationPending(
scoped_ptr<GoogleURLTrackerNavigationHelper> nav_helper,
- InfoBarService* infobar_service,
+ infobars::InfoBarManager* infobar_manager,
int pending_id) {
GoogleURLTrackerMapEntry* map_entry = NULL;
- EntryMap::iterator i(entry_map_.find(infobar_service));
+ EntryMap::iterator i(entry_map_.find(infobar_manager));
if (i != entry_map_.end())
map_entry = i->second;
@@ -297,9 +295,9 @@ void GoogleURLTracker::OnNavigationPending(
// infobar and the infobar's owner will handle tearing it down when the
// tab is destroyed.
map_entry = new GoogleURLTrackerMapEntry(
- this, infobar_service, nav_helper.Pass());
+ this, infobar_manager, nav_helper.Pass());
map_entry->navigation_helper()->SetListeningForTabDestruction(true);
- entry_map_.insert(std::make_pair(infobar_service, map_entry));
+ entry_map_.insert(std::make_pair(infobar_manager, map_entry));
} else if (map_entry->infobar_delegate()) {
// This is a new search on a tab where we already have an infobar.
map_entry->infobar_delegate()->set_pending_id(pending_id);
@@ -336,9 +334,10 @@ void GoogleURLTracker::OnNavigationPending(
}
}
-void GoogleURLTracker::OnNavigationCommitted(InfoBarService* infobar_service,
- const GURL& search_url) {
- EntryMap::iterator i(entry_map_.find(infobar_service));
+void GoogleURLTracker::OnNavigationCommitted(
+ infobars::InfoBarManager* infobar_manager,
+ const GURL& search_url) {
+ EntryMap::iterator i(entry_map_.find(infobar_manager));
DCHECK(i != entry_map_.end());
GoogleURLTrackerMapEntry* map_entry = i->second;
DCHECK(search_url.is_valid());
@@ -347,8 +346,8 @@ void GoogleURLTracker::OnNavigationCommitted(InfoBarService* infobar_service,
if (map_entry->has_infobar_delegate()) {
map_entry->infobar_delegate()->Update(search_url);
} else {
- infobars::InfoBar* infobar =
- infobar_creator_.Run(infobar_service, this, search_url);
+ infobars::InfoBar* infobar = infobar_creator_.Run(
+ infobar_manager, this, map_entry->navigation_helper(), search_url);
if (infobar) {
map_entry->SetInfoBarDelegate(
static_cast<GoogleURLTrackerInfoBarDelegate*>(infobar->delegate()));
@@ -360,11 +359,11 @@ void GoogleURLTracker::OnNavigationCommitted(InfoBarService* infobar_service,
void GoogleURLTracker::OnTabClosed(
GoogleURLTrackerNavigationHelper* nav_helper) {
- // Because InfoBarService tears itself down on tab destruction, it's possible
- // to get a non-NULL InfoBarService pointer here, depending on which order
+ // Because InfoBarManager tears itself down on tab destruction, it's possible
+ // to get a non-NULL InfoBarManager pointer here, depending on which order
// notifications fired in. Likewise, the pointer in |entry_map_| (and in its
- // associated MapEntry) may point to deleted memory. Therefore, if we were to
- // access the InfoBarService* we have for this tab, we'd need to ensure we
+ // associated MapEntry) may point to deleted memory. Therefore, if we were
+ // to access the InfoBarManager* we have for this tab, we'd need to ensure we
// just looked at the raw pointer value, and never dereferenced it. This
// function doesn't need to do even that, but others in the call chain from
// here might (and have comments pointing back here).

Powered by Google App Engine
This is Rietveld 408576698