| Index: chrome/browser/ui/search/instant_controller.cc
|
| diff --git a/chrome/browser/ui/search/instant_controller.cc b/chrome/browser/ui/search/instant_controller.cc
|
| index 26c0917eef95a10536082fb47a6748ffe26739ae..33020d5fa69b8c0813850691d80725c479af987c 100644
|
| --- a/chrome/browser/ui/search/instant_controller.cc
|
| +++ b/chrome/browser/ui/search/instant_controller.cc
|
| @@ -47,7 +47,7 @@ void EnsureSearchTermsAreSet(content::WebContents* contents,
|
|
|
| // If search terms are already correct or there is already a transient entry
|
| // (there shouldn't be), bail out early.
|
| - if (chrome::GetSearchTerms(contents) == search_terms ||
|
| + if (search::GetSearchTerms(contents) == search_terms ||
|
| controller->GetTransientEntry())
|
| return;
|
|
|
| @@ -108,7 +108,7 @@ void InstantController::ActiveTabChanged() {
|
| void InstantController::TabDeactivated(content::WebContents* contents) {
|
| // If user is deactivating an NTP tab, log the number of mouseovers for this
|
| // NTP session.
|
| - if (chrome::IsInstantNTP(contents))
|
| + if (search::IsInstantNTP(contents))
|
| InstantTab::EmitNtpStatistics(contents);
|
| }
|
|
|
|
|