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

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: Update comments Created 4 years, 1 month 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 <!-- TODO(crbug.com/658814): Localize strings. -->
4 <head> 5 <head>
5 <meta charset="utf-8"> 6 <meta charset="utf-8">
7 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <title>Bluetooth Internals</title> 8 <title>Bluetooth Internals</title>
9 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
7 <link rel="stylesheet" href="bluetooth_internals.css"> 10 <link rel="stylesheet" href="bluetooth_internals.css">
11 <script src="chrome://resources/js/assert.js"></script>
12 <script src="chrome://resources/js/util.js"></script>
8 <script src="bluetooth_internals.js"></script> 13 <script src="bluetooth_internals.js"></script>
9 </head> 14 </head>
10 15
11 <body> 16 <body>
12 <header> 17 <header>
13 <h1>Bluetooth Internals</h1> 18 <div class="title">
19 Bluetooth Internals
20 </div>
14 </header> 21 </header>
22 <table id="device-table">
23 <thead>
24 <tr>
25 <th>Name</th>
26 <th>Address</th>
27 <th>Latest RSSI</th>
28 </tr>
29 </thead>
30 <tbody id="device-list">
31 </tbody>
32 </table>
15 </body> 33 </body>
16 34
35 <template id="device-row-template">
36 <tr class="device-row">
37 <td class="device-name" data-label="Name"></td>
38 <td class="device-address" data-label="Address"></td>
39 <td class="device-rssi" data-label="Latest RSSI">Unknown</td>
40 </tr>
41 </template>
42
17 </html> 43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698