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

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

Issue 2401193002: bluetooth: Add Device service for chrome://bluetooth-internals. (Closed)
Patch Set: Simplify promise Created 4 years, 2 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 74ac1664c20bbb2c600fd600061c4f8bfe6934bc..b2cea0ef82edfb5cd4131723469604ab247b26b8 100644
--- a/chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc
+++ b/chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc
@@ -22,7 +22,10 @@ BluetoothInternalsUI::BluetoothInternalsUI(content::WebUI* web_ui)
IDR_BLUETOOTH_INTERNALS_JS);
html_source->AddResourcePath(
"device/bluetooth/public/interfaces/adapter.mojom",
- IDR_BLUETOOTH_MOJO_JS);
+ IDR_BLUETOOTH_ADAPTER_MOJO_JS);
+ html_source->AddResourcePath(
+ "device/bluetooth/public/interfaces/device.mojom",
dpapad 2016/10/12 19:42:45 +dbeam@chromium.org Still catching up with the de
dpapad 2016/10/12 21:02:32 Talked about this with @dbeam in person. It seems
mbrunson 2016/10/12 23:20:03 Great. scheib@ and ortuno@ are the device/bluetoot
+ IDR_BLUETOOTH_DEVICE_MOJO_JS);
html_source->SetDefaultResource(IDR_BLUETOOTH_INTERNALS_HTML);
html_source->DisableI18nAndUseGzipForAllPaths();

Powered by Google App Engine
This is Rietveld 408576698