| Index: chrome/common/extensions/permissions/bluetooth_permission.cc
|
| diff --git a/chrome/common/extensions/permissions/bluetooth_permission.cc b/chrome/common/extensions/permissions/bluetooth_permission.cc
|
| index 984c4a0d246001b6e0d1665cfa2073764e10dfe0..af72fc56d1c506621d4b8d4d7d1876ddab6e7d17 100644
|
| --- a/chrome/common/extensions/permissions/bluetooth_permission.cc
|
| +++ b/chrome/common/extensions/permissions/bluetooth_permission.cc
|
| @@ -50,13 +50,15 @@ PermissionMessages BluetoothPermission::GetMessages() const {
|
| result.push_back(PermissionMessage(
|
| PermissionMessage::kBluetooth,
|
| l10n_util::GetStringUTF16(
|
| - IDS_EXTENSION_PROMPT_WARNING_BLUETOOTH)));
|
| + IDS_EXTENSION_PROMPT_WARNING_BLUETOOTH),
|
| + string16()));
|
|
|
| if (!data_set_.empty()) {
|
| result.push_back(PermissionMessage(
|
| PermissionMessage::kBluetoothDevices,
|
| l10n_util::GetStringUTF16(
|
| - IDS_EXTENSION_PROMPT_WARNING_BLUETOOTH_DEVICES)));
|
| + IDS_EXTENSION_PROMPT_WARNING_BLUETOOTH_DEVICES),
|
| + string16()));
|
| }
|
|
|
| return result;
|
|
|