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

Unified Diff: dbus/values_util.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
« no previous file with comments | « dbus/string_util_unittest.cc ('k') | device/bluetooth/bluetooth_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/values_util.cc
diff --git a/dbus/values_util.cc b/dbus/values_util.cc
index 2e2d8e3e806b919866af70d451022c5257975cf6..7574f39a643d466b94fee5b437fdaf81cdd7d589 100644
--- a/dbus/values_util.cc
+++ b/dbus/values_util.cc
@@ -79,7 +79,7 @@ std::string GetTypeSignature(const base::Value& value) {
return "a{sv}";
default:
DLOG(ERROR) << "Unexpected type " << value.GetType();
- return "";
+ return std::string();
}
}
« no previous file with comments | « dbus/string_util_unittest.cc ('k') | device/bluetooth/bluetooth_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698