Index: chrome/browser/search_engines/ui_thread_search_terms_data.cc |
diff --git a/chrome/browser/search_engines/ui_thread_search_terms_data.cc b/chrome/browser/search_engines/ui_thread_search_terms_data.cc |
index ac238a0142ac62a2779addfe116c88fc3b349c7f..62421ad47ab9e5c79349fca101bc84ec933744e5 100644 |
--- a/chrome/browser/search_engines/ui_thread_search_terms_data.cc |
+++ b/chrome/browser/search_engines/ui_thread_search_terms_data.cc |
@@ -28,7 +28,7 @@ |
#include "url/gurl.h" |
#if defined(ENABLE_RLZ) |
-#include "chrome/browser/rlz/rlz.h" |
+#include "components/rlz/rlz_tracker.h" |
#endif |
using content::BrowserThread; |
@@ -82,12 +82,12 @@ base::string16 UIThreadSearchTermsData::GetRlzParameterValue( |
// 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. |
- rlz_lib::AccessPoint access_point = RLZTracker::ChromeOmnibox(); |
+ rlz_lib::AccessPoint access_point = rlz::RLZTracker::ChromeOmnibox(); |
#if !defined(OS_IOS) |
if (from_app_list) |
- access_point = RLZTracker::ChromeAppList(); |
+ access_point = rlz::RLZTracker::ChromeAppList(); |
#endif |
- RLZTracker::GetAccessPointRlz(access_point, &rlz_string); |
+ rlz::RLZTracker::GetAccessPointRlz(access_point, &rlz_string); |
} |
#endif |
return rlz_string; |