| 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 785afb347cd4071ab1910b39d311f1bb1be3ad79..31a2d2b53f161727794139e4e98a858ea4305506 100644
|
| --- a/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html
|
| +++ b/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html
|
| @@ -3,15 +3,39 @@
|
|
|
| <head>
|
| <meta charset="utf-8">
|
| + <meta name="viewport" content="width=device-width, initial-scale=1">
|
| <title>Bluetooth Internals</title>
|
| + <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
|
| <link rel="stylesheet" href="bluetooth_internals.css">
|
| + <script src="chrome://resources/js/util.js"></script>
|
| <script src="bluetooth_internals.js"></script>
|
| </head>
|
|
|
| <body>
|
| <header>
|
| - <h1>Bluetooth Internals</h1>
|
| + <div class="title">
|
| + Bluetooth Internals
|
| + </div>
|
| </header>
|
| + <table id="device-table" class="table">
|
| + <thead>
|
| + <tr>
|
| + <th>Name</th>
|
| + <th>Address</th>
|
| + <th>Latest RSSI</th>
|
| + </tr>
|
| + </thead>
|
| + <tbody id="device-list">
|
| + </tbody>
|
| + </table>
|
| </body>
|
|
|
| +<template id="device-row-template">
|
| + <tr class="device-row">
|
| + <td class="device-name" data-label="Name"></td>
|
| + <td class="device-address" data-label="Address"></td>
|
| + <td class="device-rssi" data-label="Latest RSSI">Unknown</td>
|
| + </tr>
|
| +</template>
|
| +
|
| </html>
|
|
|