summaryrefslogtreecommitdiffstats
path: root/components/url_matcher/url_matcher_unittest.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-07 14:38:26 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-07 14:38:26 +0000
commit52796541ecc14a0aa287ec0859e23350fed71278 (patch)
tree62d8cd37dc5d8eabaa87d5e62150142154465ff4 /components/url_matcher/url_matcher_unittest.cc
parent70d4450270d54a051b3b5ea828814ced1c29857f (diff)
downloadchromium_src-52796541ecc14a0aa287ec0859e23350fed71278.zip
chromium_src-52796541ecc14a0aa287ec0859e23350fed71278.tar.gz
chromium_src-52796541ecc14a0aa287ec0859e23350fed71278.tar.bz2
Move IsStringUTF8/ASCII to base namespace
TBR=sky@chromium.org Review URL: https://codereview.chromium.org/270183002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268754 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/url_matcher/url_matcher_unittest.cc')
-rw-r--r--components/url_matcher/url_matcher_unittest.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/url_matcher/url_matcher_unittest.cc b/components/url_matcher/url_matcher_unittest.cc
index 1278f62..b69364c 100644
--- a/components/url_matcher/url_matcher_unittest.cc
+++ b/components/url_matcher/url_matcher_unittest.cc
@@ -159,10 +159,10 @@ TEST(URLMatcherConditionFactoryTest, GURLCharacterSet) {
// non ASCII-7 characters. We test this here, because a change to this
// guarantee breaks this implementation horribly.
GURL url("http://www.föö.com/föö?föö#föö");
- EXPECT_TRUE(IsStringASCII(url.host()));
- EXPECT_TRUE(IsStringASCII(url.path()));
- EXPECT_TRUE(IsStringASCII(url.query()));
- EXPECT_FALSE(IsStringASCII(url.ref()));
+ EXPECT_TRUE(base::IsStringASCII(url.host()));
+ EXPECT_TRUE(base::IsStringASCII(url.path()));
+ EXPECT_TRUE(base::IsStringASCII(url.query()));
+ EXPECT_FALSE(base::IsStringASCII(url.ref()));
}
TEST(URLMatcherConditionFactoryTest, Criteria) {