summaryrefslogtreecommitdiffstats
path: root/components/google
diff options
context:
space:
mode:
Diffstat (limited to 'components/google')
-rw-r--r--components/google/DEPS2
-rw-r--r--components/google/core/browser/BUILD.gn2
-rw-r--r--components/google/core/browser/google_util.cc4
3 files changed, 4 insertions, 4 deletions
diff --git a/components/google/DEPS b/components/google/DEPS
index 683dd04..c39802b 100644
--- a/components/google/DEPS
+++ b/components/google/DEPS
@@ -1,4 +1,4 @@
include_rules = [
- "+components/url_formatter",
+ "+components/url_fixer",
"+net",
]
diff --git a/components/google/core/browser/BUILD.gn b/components/google/core/browser/BUILD.gn
index fbff1240..f499496 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_formatter",
+ "//components/url_fixer",
"//net",
"//url",
]
diff --git a/components/google/core/browser/google_util.cc b/components/google/core/browser/google_util.cc
index b24ba21..2cdfe05 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_formatter/url_fixer.h"
+#include "components/url_fixer/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_formatter::FixupURL(switch_value, std::string());
+ base_url = url_fixer::FixupURL(switch_value, std::string());
if (!base_url.is_valid() || base_url.has_query() || base_url.has_ref())
base_url = GURL();
}