| Index: chrome/browser/search_engines/search_terms_data.cc
|
| diff --git a/chrome/browser/search_engines/search_terms_data.cc b/chrome/browser/search_engines/search_terms_data.cc
|
| index f72b0b7096516d10cc1314acf7da37962764865c..98d6fb99968ea10397c11cd88c12c9ac7966dd83 100644
|
| --- a/chrome/browser/search_engines/search_terms_data.cc
|
| +++ b/chrome/browser/search_engines/search_terms_data.cc
|
| @@ -11,6 +11,7 @@
|
| #include "chrome/browser/browser_process.h"
|
| #include "chrome/browser/google/google_profile_helper.h"
|
| #include "chrome/browser/google/google_url_tracker.h"
|
| +#include "chrome/browser/google/google_brand.h"
|
| #include "chrome/browser/google/google_util.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/search/search.h"
|
| @@ -122,8 +123,8 @@ base::string16 UIThreadSearchTermsData::GetRlzParameterValue(
|
| // For organic brandcodes do not use rlz at all. Empty brandcode usually
|
| // means a chromium install. This is ok.
|
| std::string brand;
|
| - if (google_util::GetBrand(&brand) && !brand.empty() &&
|
| - !google_util::IsOrganic(brand)) {
|
| + if (google_brand::GetBrand(&brand) && !brand.empty() &&
|
| + !google_brand::IsOrganic(brand)) {
|
| // This call will return false the first time(s) it is called until the
|
| // value has been cached. This normally would mean that at most one omnibox
|
| // search might not send the RLZ data but this is not really a problem.
|
|
|