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

Unified Diff: chrome/browser/ui/views/autofill_profiles_view_win.cc

Issue 6088008: Remove wstring from l10n_util. Part 7.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 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/ui/views/autofill_profiles_view_win.cc
===================================================================
--- chrome/browser/ui/views/autofill_profiles_view_win.cc (revision 70562)
+++ chrome/browser/ui/views/autofill_profiles_view_win.cc (working copy)
@@ -301,7 +301,7 @@
views::GridLayout::USE_PREF, 0, 0);
layout->StartRow(0, 0);
views::Link* link = new views::Link(
- l10n_util::GetString(IDS_AUTOFILL_LEARN_MORE));
+ UTF16ToWide(l10n_util::GetStringUTF16(IDS_AUTOFILL_LEARN_MORE)));
link->SetController(this);
layout->AddView(link);
@@ -323,7 +323,7 @@
std::wstring AutoFillProfilesView::GetWindowTitle() const {
- return l10n_util::GetString(IDS_AUTOFILL_OPTIONS_TITLE);
+ return UTF16ToWide(l10n_util::GetStringUTF16(IDS_AUTOFILL_OPTIONS_TITLE));
}
void AutoFillProfilesView::WindowClosing() {
@@ -448,7 +448,7 @@
GetData();
enable_auto_fill_button_ = new views::Checkbox(
- l10n_util::GetString(IDS_OPTIONS_AUTOFILL_ENABLE));
+ UTF16ToWide(l10n_util::GetStringUTF16(IDS_OPTIONS_AUTOFILL_ENABLE)));
enable_auto_fill_button_->set_listener(this);
table_model_.reset(new ContentListTableModel(&profiles_set_,
@@ -460,13 +460,13 @@
scroll_view_->SetObserver(this);
add_address_button_ = new views::NativeButton(this,
- l10n_util::GetString(IDS_AUTOFILL_ADD_ADDRESS_BUTTON));
- add_credit_card_button_ = new views::NativeButton(this,
- l10n_util::GetString(IDS_AUTOFILL_ADD_CREDITCARD_BUTTON));
+ UTF16ToWide(l10n_util::GetStringUTF16(IDS_AUTOFILL_ADD_ADDRESS_BUTTON)));
+ add_credit_card_button_ = new views::NativeButton(this, UTF16ToWide(
+ l10n_util::GetStringUTF16(IDS_AUTOFILL_ADD_CREDITCARD_BUTTON)));
edit_button_ = new views::NativeButton(this,
- l10n_util::GetString(IDS_AUTOFILL_EDIT_BUTTON));
+ UTF16ToWide(l10n_util::GetStringUTF16(IDS_AUTOFILL_EDIT_BUTTON)));
remove_button_ = new views::NativeButton(this,
- l10n_util::GetString(IDS_AUTOFILL_DELETE_BUTTON));
+ UTF16ToWide(l10n_util::GetStringUTF16(IDS_AUTOFILL_DELETE_BUTTON)));
views::GridLayout* layout = CreatePanelGridLayout(this);
SetLayoutManager(layout);
@@ -746,7 +746,7 @@
MessageBoxFlags::DialogButton button) const {
switch (button) {
case MessageBoxFlags::DIALOGBUTTON_OK:
- return l10n_util::GetString(IDS_AUTOFILL_DIALOG_SAVE);
+ return UTF16ToWide(l10n_util::GetStringUTF16(IDS_AUTOFILL_DIALOG_SAVE));
case MessageBoxFlags::DIALOGBUTTON_CANCEL:
return std::wstring();
default:
@@ -812,7 +812,7 @@
string_id = new_item_ ? IDS_AUTOFILL_ADD_CREDITCARD_CAPTION :
IDS_AUTOFILL_EDIT_CREDITCARD_CAPTION;
}
- return l10n_util::GetString(string_id);
+ return UTF16ToWide(l10n_util::GetStringUTF16(string_id));
}
void AutoFillProfilesView::EditableSetViewContents::WindowClosing() {
@@ -942,16 +942,16 @@
layout->AddPaddingRow(0, kRelatedControlVerticalSpacing);
layout->StartRow(0, double_column_leading_view_set_id_);
- layout->AddView(new views::Label(l10n_util::GetString(
- IDS_AUTOFILL_DIALOG_ADDRESS_LINE_1)));
+ layout->AddView(new views::Label(UTF16ToWide(l10n_util::GetStringUTF16(
+ IDS_AUTOFILL_DIALOG_ADDRESS_LINE_1))));
layout->StartRow(0, double_column_fill_view_set_id_);
layout->AddView(text_fields_[TEXT_ADDRESS_LINE_1]);
layout->AddPaddingRow(0, kRelatedControlVerticalSpacing);
layout->StartRow(0, double_column_leading_view_set_id_);
- layout->AddView(new views::Label(l10n_util::GetString(
- IDS_AUTOFILL_DIALOG_ADDRESS_LINE_2)));
+ layout->AddView(new views::Label(UTF16ToWide(l10n_util::GetStringUTF16(
+ IDS_AUTOFILL_DIALOG_ADDRESS_LINE_2))));
layout->StartRow(0, double_column_fill_view_set_id_);
layout->AddView(text_fields_[TEXT_ADDRESS_LINE_2]);
@@ -1172,7 +1172,8 @@
views::Label*
AutoFillProfilesView::EditableSetViewContents::CreateLeftAlignedLabel(
int label_id) {
- views::Label* label = new views::Label(l10n_util::GetString(label_id));
+ views::Label* label =
+ new views::Label(UTF16ToWide(l10n_util::GetStringUTF16(label_id)));
label->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
return label;
}
@@ -1281,12 +1282,14 @@
TableModel::Groups groups;
TableModel::Group profile_group;
- profile_group.title = l10n_util::GetString(IDS_AUTOFILL_ADDRESSES_GROUP_NAME);
+ profile_group.title =
+ l10n_util::GetStringUTF16(IDS_AUTOFILL_ADDRESSES_GROUP_NAME);
profile_group.id = kAddressGroup;
groups.push_back(profile_group);
Group cc_group;
- cc_group.title = l10n_util::GetString(IDS_AUTOFILL_CREDITCARDS_GROUP_NAME);
+ cc_group.title =
+ l10n_util::GetStringUTF16(IDS_AUTOFILL_CREDITCARDS_GROUP_NAME);
cc_group.id = kCreditCardGroup;
groups.push_back(cc_group);

Powered by Google App Engine
This is Rietveld 408576698