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

Unified Diff: chrome/browser/shell_integration_linux.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/shell_integration_linux.cc
diff --git a/chrome/browser/shell_integration_linux.cc b/chrome/browser/shell_integration_linux.cc
index 2a656fe711e02704e7c9e9ed896b47b173b8a008..c0be6de531a5e15c0546339aaeb6966c9d3106e0 100644
--- a/chrome/browser/shell_integration_linux.cc
+++ b/chrome/browser/shell_integration_linux.cc
@@ -435,7 +435,7 @@ ShellIntegration::DefaultWebClientSetPermission
// static
bool ShellIntegration::SetAsDefaultBrowser() {
- return SetDefaultWebClient("");
+ return SetDefaultWebClient(std::string());
}
// static
@@ -445,7 +445,7 @@ bool ShellIntegration::SetAsDefaultProtocolClient(const std::string& protocol) {
// static
ShellIntegration::DefaultWebClientState ShellIntegration::GetDefaultBrowser() {
- return GetIsDefaultWebClient("");
+ return GetIsDefaultWebClient(std::string());
}
// static
« no previous file with comments | « chrome/browser/sessions/session_restore_browsertest.cc ('k') | chrome/browser/shell_integration_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698