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

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: CSS changes, assert, importNode, textContent 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 <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/assert.js"></script>
11 <script src="chrome://resources/js/util.js"></script>
8 <script src="bluetooth_internals.js"></script> 12 <script src="bluetooth_internals.js"></script>
9 </head> 13 </head>
10 14
11 <body> 15 <body>
12 <header> 16 <header>
13 <h1>Bluetooth Internals</h1> 17 <div class="title">
18 Bluetooth Internals
19 </div>
14 </header> 20 </header>
21 <table id="device-table">
22 <thead>
23 <tr>
24 <th>Name</th>
dpapad 2016/10/24 18:12:26 Are you planning to localize those strings eventua
mbrunson 2016/10/24 19:27:53 Done.
25 <th>Address</th>
26 <th>Latest RSSI</th>
27 </tr>
28 </thead>
29 <tbody id="device-list">
30 </tbody>
31 </table>
15 </body> 32 </body>
16 33
34 <template id="device-row-template">
35 <tr class="device-row">
36 <td class="device-name" data-label="Name"></td>
37 <td class="device-address" data-label="Address"></td>
38 <td class="device-rssi" data-label="Latest RSSI">Unknown</td>
39 </tr>
40 </template>
41
17 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698