Chromium Code Reviews| 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..983c8c5367407adb47be9211d082fb4b72275b43 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> |
| @@ -78,6 +79,7 @@ |
| <th data-field="rssi.value">Latest RSSI</th> |
| <th data-field="services.length">Services</th> |
| <th data-field="is_gatt_connected">GATT Connection State</th> |
| + <th></th> |
| </tr> |
| </thead> |
| <tbody> |
| @@ -85,4 +87,15 @@ |
| </table> |
| </template> |
| +<template id="device-details-template"> |
| + <div class="device-details-page"> |
| + <div class="header-extras"> |
| + <button class="disconnect-btn">Disconnect</button> |
|
dpapad
2017/01/12 18:37:08
Nit (optional): Drop "-btn" suffix? I don't see an
mbrunson
2017/01/12 22:16:28
Done.
|
| + <button class="forget-btn">Forget</button> |
| + </div> |
| + <h3>Status</h3> |
| + <section class="device-details flex"></section> |
| + </div> |
| +</template> |
| + |
| </html> |