Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Unified Diff: chrome/browser/extensions/api/dial/dial_device_data_unittest.cc

Issue 13145003: Rewrite std::string("") to std::string(), Linux edition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ugh Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/dial/dial_device_data_unittest.cc
diff --git a/chrome/browser/extensions/api/dial/dial_device_data_unittest.cc b/chrome/browser/extensions/api/dial/dial_device_data_unittest.cc
index 447efcaaabfbe8e171047cc8d6552af02af0ee1b..4ccc4701405c663f14a268cefee66160e6f528e3 100644
--- a/chrome/browser/extensions/api/dial/dial_device_data_unittest.cc
+++ b/chrome/browser/extensions/api/dial/dial_device_data_unittest.cc
@@ -96,9 +96,9 @@ TEST(DialDeviceDataTest, TestIsDeviceDescriptionUrl) {
GURL("https://192.168.1.1:1234/dd.xml")));
EXPECT_FALSE(DialDeviceData::IsDeviceDescriptionUrl(GURL()));
- EXPECT_FALSE(DialDeviceData::IsDeviceDescriptionUrl(GURL("")));
- EXPECT_FALSE(DialDeviceData::IsDeviceDescriptionUrl(
- GURL("file://path/to/file")));
+ EXPECT_FALSE(DialDeviceData::IsDeviceDescriptionUrl(GURL(std::string())));
+ EXPECT_FALSE(
+ DialDeviceData::IsDeviceDescriptionUrl(GURL("file://path/to/file")));
}
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698