diff options
Diffstat (limited to 'components/google')
-rw-r--r-- | components/google/DEPS | 2 | ||||
-rw-r--r-- | components/google/core/browser/BUILD.gn | 2 | ||||
-rw-r--r-- | components/google/core/browser/google_util.cc | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/components/google/DEPS b/components/google/DEPS index c39802b..683dd04 100644 --- a/components/google/DEPS +++ b/components/google/DEPS @@ -1,4 +1,4 @@ include_rules = [ - "+components/url_fixer", + "+components/url_formatter", "+net", ] diff --git a/components/google/core/browser/BUILD.gn b/components/google/core/browser/BUILD.gn index f499496..fbff1240 100644 --- a/components/google/core/browser/BUILD.gn +++ b/components/google/core/browser/BUILD.gn @@ -24,7 +24,7 @@ static_library("browser") { "//components/keyed_service/core", "//components/pref_registry", "//components/strings", - "//components/url_fixer", + "//components/url_formatter", "//net", "//url", ] diff --git a/components/google/core/browser/google_util.cc b/components/google/core/browser/google_util.cc index 2cdfe05..b24ba21 100644 --- a/components/google/core/browser/google_util.cc +++ b/components/google/core/browser/google_util.cc @@ -15,7 +15,7 @@ #include "base/strings/utf_string_conversions.h" #include "components/google/core/browser/google_switches.h" #include "components/google/core/browser/google_url_tracker.h" -#include "components/url_fixer/url_fixer.h" +#include "components/url_formatter/url_fixer.h" #include "net/base/registry_controlled_domains/registry_controlled_domain.h" #include "net/base/url_util.h" #include "url/gurl.h" @@ -153,7 +153,7 @@ GURL CommandLineGoogleBaseURL() { switches::kGoogleBaseURL)); if (current_switch_value != switch_value) { switch_value = current_switch_value; - base_url = url_fixer::FixupURL(switch_value, std::string()); + base_url = url_formatter::FixupURL(switch_value, std::string()); if (!base_url.is_valid() || base_url.has_query() || base_url.has_ref()) base_url = GURL(); } |