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

Unified Diff: chrome/common/extensions/permissions/bluetooth_permission.cc

Issue 18854021: Making the extension permissions dialog scrollable, when needed (adding expandable sections for thi… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Even more param reductions Created 7 years, 5 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/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;

Powered by Google App Engine
This is Rietveld 408576698