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

Unified Diff: chrome/browser/extensions/extension_install_prompt.cc

Issue 1223153003: Move JoinString to the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: windows Created 5 years, 5 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/extensions/extension_install_prompt.cc
diff --git a/chrome/browser/extensions/extension_install_prompt.cc b/chrome/browser/extensions/extension_install_prompt.cc
index 6c093e1dba7a3a53473ae8573c446b5e7608be9f..4cdcf4d7be492645ff613ceac4bd1a80e8ebe47f 100644
--- a/chrome/browser/extensions/extension_install_prompt.cc
+++ b/chrome/browser/extensions/extension_install_prompt.cc
@@ -269,7 +269,8 @@ void ExtensionInstallPrompt::Prompt::SetPermissions(
detail_line);
}
- details = JoinString(detail_lines_with_bullets, '\n');
+ details = base::JoinString(detail_lines_with_bullets,
+ base::ASCIIToUTF16("\n"));
}
install_permissions.details.push_back(details);
install_permissions.is_showing_details.push_back(false);
« no previous file with comments | « chrome/browser/extensions/crx_installer.cc ('k') | chrome/browser/extensions/extension_message_bubble_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698