Index: chrome/browser/google/google_util.cc |
diff --git a/chrome/browser/google/google_util.cc b/chrome/browser/google/google_util.cc |
index e0edd2be8d12986be88aff56cb372e4d9931e7d8..eda66b334eb9ae10da12bec84c65276edf8ab0cc 100644 |
--- a/chrome/browser/google/google_util.cc |
+++ b/chrome/browser/google/google_util.cc |
@@ -14,8 +14,8 @@ |
#include "base/utf_string_conversions.h" |
#include "chrome/browser/browser_process.h" |
#include "chrome/browser/google/google_url_tracker.h" |
-#include "chrome/browser/net/browser_url_util.h" |
#include "chrome/common/chrome_switches.h" |
+#include "chrome/common/net/url_util.h" |
#include "chrome/installer/util/google_update_settings.h" |
#include "googleurl/src/gurl.h" |
#include "net/base/registry_controlled_domain.h" |
@@ -66,7 +66,7 @@ GURL AppendGoogleLocaleParam(const GURL& url) { |
std::string locale = g_browser_process->GetApplicationLocale(); |
if (locale == "nb") |
locale = "no"; |
- return chrome_browser_net::AppendQueryParameter(url, "hl", locale); |
+ return chrome_common_net::AppendQueryParameter(url, "hl", locale); |
} |
std::string StringAppendGoogleLocaleParam(const std::string& url) { |
@@ -85,7 +85,7 @@ GURL AppendGoogleTLDParam(Profile* profile, const GURL& url) { |
NOTREACHED(); |
return url; |
} |
- return chrome_browser_net::AppendQueryParameter( |
+ return chrome_common_net::AppendQueryParameter( |
url, "sd", google_domain.substr(first_dot + 1)); |
} |