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..68ec5c0058626e01afcd82c930dd97fa61453c6f 100644 |
--- a/chrome/browser/search_engines/search_terms_data.cc |
+++ b/chrome/browser/search_engines/search_terms_data.cc |
@@ -9,6 +9,7 @@ |
#include "base/metrics/field_trial.h" |
#include "base/prefs/pref_service.h" |
#include "chrome/browser/browser_process.h" |
+#include "chrome/browser/google/google_brand.h" |
#include "chrome/browser/google/google_profile_helper.h" |
#include "chrome/browser/google/google_url_tracker.h" |
#include "chrome/browser/google/google_util.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. |