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

Unified Diff: content/renderer/render_thread_impl.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/renderer/render_thread_impl.cc
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
index 0c4212bbd1936bf22ea97015954cffb092ec24ee..3e06f1f1dd2f0503b7c75e48a3fdf21be8b571b7 100644
--- a/content/renderer/render_thread_impl.cc
+++ b/content/renderer/render_thread_impl.cc
@@ -180,7 +180,7 @@ std::string HostToCustomHistogramSuffix(const std::string& host) {
return ".docs";
if (host == "plus.google.com")
return ".plus";
- return "";
+ return std::string();
}
void* CreateHistogram(

Powered by Google App Engine
This is Rietveld 408576698