Chromium Code Reviews

Unified Diff: chrome/browser/blocked_plugin_manager.cc

Issue 3127009: Convert infobar APIs to UTF-16. (Closed)
Patch Set: works Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/blocked_plugin_manager.cc
diff --git a/chrome/browser/blocked_plugin_manager.cc b/chrome/browser/blocked_plugin_manager.cc
index 92b7c91d4d93574b0c0f0da4dff1297b7557df8b..222ceee658f74bd53bd0edc2eb99b6c828979aee 100644
--- a/chrome/browser/blocked_plugin_manager.cc
+++ b/chrome/browser/blocked_plugin_manager.cc
@@ -29,19 +29,18 @@ int BlockedPluginManager::GetButtons() const {
return BUTTON_OK;
}
-std::wstring BlockedPluginManager::GetButtonLabel(InfoBarButton button) const {
+string16 BlockedPluginManager::GetButtonLabel(InfoBarButton button) const {
if (button == BUTTON_OK)
- return l10n_util::GetString(IDS_PLUGIN_LOAD_SHORT);
+ return l10n_util::GetStringUTF16(IDS_PLUGIN_LOAD_SHORT);
return ConfirmInfoBarDelegate::GetButtonLabel(button);
}
-std::wstring BlockedPluginManager::GetMessageText() const {
- return UTF16ToWide(l10n_util::GetStringFUTF16(IDS_PLUGIN_BLOCKED_PROMPT,
- name_));
+string16 BlockedPluginManager::GetMessageText() const {
+ return l10n_util::GetStringFUTF16(IDS_PLUGIN_BLOCKED_PROMPT, name_);
}
-std::wstring BlockedPluginManager::GetLinkText() {
- return l10n_util::GetString(IDS_LEARN_MORE);
+string16 BlockedPluginManager::GetLinkText() {
+ return l10n_util::GetStringUTF16(IDS_LEARN_MORE);
}
SkBitmap* BlockedPluginManager::GetIcon() const {

Powered by Google App Engine