Index: chrome/browser/resources/bluetooth_internals/bluetooth_internals.html |
diff --git a/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html b/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html |
index c4101e3414c0df03ca5a9ec8b977eeb38d3a5863..bd934274f3e1a41cacf8dbb13b7c3221a9dc19c3 100644 |
--- a/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html |
+++ b/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html |
@@ -25,6 +25,7 @@ |
<script src="object_fieldset.js"></script> |
<script src="adapter_page.js"></script> |
<script src="device_collection.js"></script> |
+ <script src="device_details_page.js"></script> |
<script src="device_table.js"></script> |
<script src="devices_page.js"></script> |
<script src="sidebar.js"></script> |
@@ -37,7 +38,7 @@ |
<button id="menu-btn" class="custom-appearance"></button> |
<h1 class="page-title"></h1> |
</header> |
- <section id="adapter" hidden> |
+ <section id="adapter" class="flex" hidden> |
<div class="header-extras"> |
<button id="adapter-refresh-btn">Refresh</button> |
</div> |
@@ -85,4 +86,15 @@ |
</table> |
</template> |
+<template id="device-details-template"> |
+ <div class="device-details-container"> |
+ <div class="header-extras"> |
+ <button class="disconnect-btn">Disconnect</button> |
+ <button class="forget-btn">Forget</button> |
+ </div> |
+ <h3>Status</h3> |
+ <section class="device-details flex"></section> |
+ </div> |
+</template> |
+ |
</html> |