| Index: chrome/browser/google/google_util_unittest.cc
|
| diff --git a/chrome/browser/google/google_util_unittest.cc b/chrome/browser/google/google_util_unittest.cc
|
| index cf4c6100310831e803e765b2997e5cb10d3b34c6..75b706773b31708c103bafdcb65f1765052b3147 100644
|
| --- a/chrome/browser/google/google_util_unittest.cc
|
| +++ b/chrome/browser/google/google_util_unittest.cc
|
| @@ -53,7 +53,7 @@ TEST(GoogleUtilTest, GoodHomePagesSecure) {
|
| }
|
|
|
| TEST(GoogleUtilTest, BadHomePages) {
|
| - EXPECT_FALSE(IsGoogleHomePageUrl(""));
|
| + EXPECT_FALSE(IsGoogleHomePageUrl(std::string()));
|
|
|
| // If specified, only the "www" subdomain is OK.
|
| EXPECT_FALSE(IsGoogleHomePageUrl("http://maps.google.com"));
|
| @@ -237,7 +237,7 @@ TEST(GoogleUtilTest, BadSearches) {
|
| "http://www.google.com/search/nogood?q=something"));
|
| EXPECT_FALSE(IsGoogleSearchUrl(
|
| "http://www.google.com/webhp/nogood#q=something"));
|
| - EXPECT_FALSE(IsGoogleSearchUrl(""));
|
| + EXPECT_FALSE(IsGoogleSearchUrl(std::string()));
|
|
|
| // Case sensitive paths.
|
| EXPECT_FALSE(IsGoogleSearchUrl(
|
|
|