| Index: 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 1278f62dfd7dfe5df29aee6140a57fadf953401b..b69364c231c5a254d9f246b01a917180c1c63a81 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) {
|
|
|