| Index: chrome/browser/plugin_exceptions_table_model.cc
|
| ===================================================================
|
| --- chrome/browser/plugin_exceptions_table_model.cc (revision 70282)
|
| +++ chrome/browser/plugin_exceptions_table_model.cc (working copy)
|
| @@ -87,9 +87,11 @@
|
| case IDS_EXCEPTIONS_ACTION_HEADER:
|
| switch (entry.setting) {
|
| case CONTENT_SETTING_ALLOW:
|
| - return l10n_util::GetString(IDS_EXCEPTIONS_ALLOW_BUTTON);
|
| + return UTF16ToWideHack(
|
| + l10n_util::GetStringUTF16(IDS_EXCEPTIONS_ALLOW_BUTTON));
|
| case CONTENT_SETTING_BLOCK:
|
| - return l10n_util::GetString(IDS_EXCEPTIONS_BLOCK_BUTTON);
|
| + return UTF16ToWideHack(
|
| + l10n_util::GetStringUTF16(IDS_EXCEPTIONS_BLOCK_BUTTON));
|
| default:
|
| NOTREACHED();
|
| }
|
|
|