| 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 a2dded310ac0903f7fa499e8670a7633ea528e84..535cbbaa8ecac4a3a3c9bec030592abe7f3d8783 100644
|
| --- a/chrome/browser/google/google_url_tracker.cc
|
| +++ b/chrome/browser/google/google_url_tracker.cc
|
| @@ -13,11 +13,11 @@
|
| #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.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/infobars/core/infobar.h"
|
| #include "content/public/browser/navigation_controller.h"
|
| #include "content/public/browser/navigation_entry.h"
|
| #include "content/public/browser/notification_service.h"
|
| @@ -344,7 +344,8 @@ void GoogleURLTracker::OnNavigationCommitted(InfoBarService* infobar_service,
|
| if (map_entry->has_infobar_delegate()) {
|
| map_entry->infobar_delegate()->Update(search_url);
|
| } else {
|
| - InfoBar* infobar = infobar_creator_.Run(infobar_service, this, search_url);
|
| + infobars::InfoBar* infobar =
|
| + infobar_creator_.Run(infobar_service, this, search_url);
|
| if (infobar) {
|
| map_entry->SetInfoBarDelegate(
|
| static_cast<GoogleURLTrackerInfoBarDelegate*>(infobar->delegate()));
|
|
|