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

Unified Diff: chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc

Issue 2627243002: bluetooth: Add control for reading/writing of characteristics to internals page. (Closed)
Patch Set: Remove TypeConverter, add EnumTraits for GattResult Created 3 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/webui/bluetooth_internals/bluetooth_internals_ui.cc
diff --git a/chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc b/chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc
index 9ef6db5f66c214957708f2fde5393705bc0d7364..ab2833062d14ad751974230ca5bc2944793ae09a 100644
--- a/chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc
+++ b/chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc
@@ -26,6 +26,8 @@ BluetoothInternalsUI::BluetoothInternalsUI(content::WebUI* web_ui)
IDR_BLUETOOTH_INTERNALS_JS);
html_source->AddResourcePath("characteristic_list.js",
IDR_BLUETOOTH_INTERNALS_CHARACTERISTIC_LIST_JS);
+ html_source->AddResourcePath("descriptor_list.js",
+ IDR_BLUETOOTH_INTERNALS_DESCRIPTOR_LIST_JS);
html_source->AddResourcePath("device_broker.js",
IDR_BLUETOOTH_INTERNALS_DEVICE_BROKER_JS);
html_source->AddResourcePath("device_collection.js",
@@ -48,6 +50,8 @@ BluetoothInternalsUI::BluetoothInternalsUI(content::WebUI* web_ui)
IDR_BLUETOOTH_INTERNALS_SIDEBAR_JS);
html_source->AddResourcePath("snackbar.js",
IDR_BLUETOOTH_INTERNALS_SNACKBAR_JS);
+ html_source->AddResourcePath("value_control.js",
+ IDR_BLUETOOTH_INTERNALS_VALUE_CONTROL_JS);
html_source->AddResourcePath(
"device/bluetooth/public/interfaces/adapter.mojom",

Powered by Google App Engine
This is Rietveld 408576698