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

Unified Diff: content/browser/gpu/gpu_control_list_string_info_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: content/browser/gpu/gpu_control_list_string_info_unittest.cc
diff --git a/content/browser/gpu/gpu_control_list_string_info_unittest.cc b/content/browser/gpu/gpu_control_list_string_info_unittest.cc
index 43bb952f39fb634d95c7ee02c6a9487e472ec278..c2c80094ac8a156afe1b311b41973c3bd5476f8b 100644
--- a/content/browser/gpu/gpu_control_list_string_info_unittest.cc
+++ b/content/browser/gpu/gpu_control_list_string_info_unittest.cc
@@ -24,7 +24,7 @@ TEST_F(StringInfoTest, ValidStringInfo) {
};
for (size_t i = 0; i < arraysize(op); ++i) {
{
- StringInfo info(op[i], "");
+ StringInfo info(op[i], std::string());
EXPECT_TRUE(info.IsValid());
}
{

Powered by Google App Engine
This is Rietveld 408576698