Chromium Code Reviews

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

Issue 2448713002: bluetooth: Add Device connection logic and accompanying user interface. (Closed)
Patch Set: Add pub/sub system for device events, various issue fixes Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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 c3085c47173663f600d6a49750db689ece1feaf6..60f56dcb10ee7f8abe1ba457ff6e2e3e27aa69e1 100644
--- a/chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc
+++ b/chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc
@@ -34,6 +34,8 @@ BluetoothInternalsUI::BluetoothInternalsUI(content::WebUI* web_ui)
html_source->AddResourcePath(
"device/bluetooth/public/interfaces/device.mojom",
IDR_BLUETOOTH_DEVICE_MOJO_JS);
+ html_source->AddResourcePath("device/bluetooth/public/interfaces/uuid.mojom",
+ IDR_BLUETOOTH_UUID_MOJO_JS);
html_source->SetDefaultResource(IDR_BLUETOOTH_INTERNALS_HTML);
html_source->DisableI18nAndUseGzipForAllPaths();

Powered by Google App Engine