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

Unified Diff: chrome/browser/chromeos/login/login_html_dialog.cc

Issue 7461136: Convert HtmlDialogUIDelegate::GetDialogTitle() to string16. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes Created 9 years, 4 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/browser/chromeos/login/login_html_dialog.h ('k') | chrome/browser/chromeos/sim_dialog_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/login_html_dialog.cc
diff --git a/chrome/browser/chromeos/login/login_html_dialog.cc b/chrome/browser/chromeos/login/login_html_dialog.cc
index e4531be11cbb91df7f25ae7b2262444c0bfc8f3c..263025ca77717279786b17e312b7265a8ac108db 100644
--- a/chrome/browser/chromeos/login/login_html_dialog.cc
+++ b/chrome/browser/chromeos/login/login_html_dialog.cc
@@ -34,7 +34,7 @@ LoginHtmlDialog::LoginHtmlDialog(Delegate* delegate,
Style style)
: delegate_(delegate),
parent_window_(parent_window),
- title_(title),
+ title_(WideToUTF16Hack(title)),
url_(url),
style_(style),
bubble_frame_view_(NULL),
@@ -84,7 +84,7 @@ bool LoginHtmlDialog::IsDialogModal() const {
return true;
}
-std::wstring LoginHtmlDialog::GetDialogTitle() const {
+string16 LoginHtmlDialog::GetDialogTitle() const {
return title_;
}
« no previous file with comments | « chrome/browser/chromeos/login/login_html_dialog.h ('k') | chrome/browser/chromeos/sim_dialog_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698