From 52796541ecc14a0aa287ec0859e23350fed71278 Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Wed, 7 May 2014 14:38:26 +0000 Subject: 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 --- components/url_matcher/url_matcher_unittest.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'components/url_matcher/url_matcher_unittest.cc') 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) { -- cgit v1.1