 Chromium Code Reviews
 Chromium Code Reviews Issue 2446823002:
  bluetooth: Componentize device list in chrome://bluetooth-internals.  (Closed)
    
  
    Issue 2446823002:
  bluetooth: Componentize device list in chrome://bluetooth-internals.  (Closed) 
  | 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 b2cea0ef82edfb5cd4131723469604ab247b26b8..c3085c47173663f600d6a49750db689ece1feaf6 100644 | 
| --- a/chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc | 
| +++ b/chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc | 
| @@ -20,6 +20,14 @@ BluetoothInternalsUI::BluetoothInternalsUI(content::WebUI* web_ui) | 
| IDR_BLUETOOTH_INTERNALS_CSS); | 
| html_source->AddResourcePath("bluetooth_internals.js", | 
| IDR_BLUETOOTH_INTERNALS_JS); | 
| + html_source->AddResourcePath("device_collection.js", | 
| + IDR_BLUETOOTH_INTERNALS_DEVICE_COLLECTION_JS); | 
| + html_source->AddResourcePath("device_table.js", | 
| + IDR_BLUETOOTH_INTERNALS_DEVICE_TABLE_JS); | 
| + html_source->AddResourcePath("interfaces.js", | 
| + IDR_BLUETOOTH_INTERNALS_INTERFACES_JS); | 
| + html_source->AddResourcePath("adapter_broker.js", | 
| + IDR_BLUETOOTH_INTERNALS_ADAPTER_BROKER_JS); | 
| 
Dan Beam
2016/11/09 18:00:32
can we alphabetize this?
 
mbrunson
2016/11/10 01:02:14
Done.
 | 
| html_source->AddResourcePath( | 
| "device/bluetooth/public/interfaces/adapter.mojom", | 
| IDR_BLUETOOTH_ADAPTER_MOJO_JS); |