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

Side by Side Diff: chrome/browser/resources/bluetooth_internals/bluetooth_internals.html

Issue 2418343002: bluetooth: Add device list UI for chrome://bluetooth-internals. (Closed)
Patch Set: Add comments to new device functions 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 3
4 <head> 4 <head>
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <title>Bluetooth Internals</title> 7 <title>Bluetooth Internals</title>
8 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
7 <link rel="stylesheet" href="bluetooth_internals.css"> 9 <link rel="stylesheet" href="bluetooth_internals.css">
10 <script src="chrome://resources/js/util.js"></script>
8 <script src="bluetooth_internals.js"></script> 11 <script src="bluetooth_internals.js"></script>
9 </head> 12 </head>
10 13
11 <body> 14 <body>
12 <header> 15 <header>
13 <h1>Bluetooth Internals</h1> 16 <div class="title">
17 Bluetooth Internals
18 </div>
14 </header> 19 </header>
20 <table id="device-table" class="table">
21 <thead>
22 <tr>
23 <th>Name</th>
24 <th>Address</th>
25 <th>Latest RSSI</th>
26 </tr>
27 </thead>
28 <tbody id="device-list">
29 </tbody>
30 </table>
15 </body> 31 </body>
16 32
33 <template id="device-row-template">
34 <tr class="device-row">
35 <td class="device-name" data-label="Name"></td>
36 <td class="device-address" data-label="Address"></td>
37 <td class="device-rssi" data-label="Latest RSSI">Unknown</td>
38 </tr>
39 </template>
40
17 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698