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

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

Issue 2622393002: bluetooth: Add characteristic list to DeviceDetailsPage in internals page. (Closed)
Patch Set: Simplifications 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 b5737249c78bed97b27bff393b14bdfc518a4b89..9ef6db5f66c214957708f2fde5393705bc0d7364 100644
--- a/chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc
+++ b/chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc
@@ -24,6 +24,10 @@ BluetoothInternalsUI::BluetoothInternalsUI(content::WebUI* web_ui)
IDR_BLUETOOTH_INTERNALS_CSS);
html_source->AddResourcePath("bluetooth_internals.js",
IDR_BLUETOOTH_INTERNALS_JS);
+ html_source->AddResourcePath("characteristic_list.js",
+ IDR_BLUETOOTH_INTERNALS_CHARACTERISTIC_LIST_JS);
+ html_source->AddResourcePath("device_broker.js",
+ IDR_BLUETOOTH_INTERNALS_DEVICE_BROKER_JS);
html_source->AddResourcePath("device_collection.js",
IDR_BLUETOOTH_INTERNALS_DEVICE_COLLECTION_JS);
html_source->AddResourcePath("device_details_page.js",

Powered by Google App Engine
This is Rietveld 408576698