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

Unified Diff: chrome/utility/profile_import_handler.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 | « chrome/tools/ipclist/ipcfuzz.cc ('k') | components/autofill/browser/phone_number_i18n_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/profile_import_handler.cc
diff --git a/chrome/utility/profile_import_handler.cc b/chrome/utility/profile_import_handler.cc
index 473581ce493dc2d111f3c5c7cb312f9bde831f34..413feea3bea0166e91c0bee30f171148a31fb4ae 100644
--- a/chrome/utility/profile_import_handler.cc
+++ b/chrome/utility/profile_import_handler.cc
@@ -68,7 +68,7 @@ void ProfileImportHandler::OnImportItemFinished(uint16 item) {
items_to_import_ ^= item; // Remove finished item from mask.
// If we've finished with all items, notify the browser process.
if (items_to_import_ == 0) {
- Send(new ProfileImportProcessHostMsg_Import_Finished(true, ""));
+ Send(new ProfileImportProcessHostMsg_Import_Finished(true, std::string()));
ImporterCleanup();
}
}
« no previous file with comments | « chrome/tools/ipclist/ipcfuzz.cc ('k') | components/autofill/browser/phone_number_i18n_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698