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

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

Issue 2448713002: bluetooth: Add Device connection logic and accompanying user interface. (Closed)
Patch Set: Major reorganization of Mojo interface code and DeviceCollection 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 <!-- TODO(crbug.com/658814): Localize strings. -->
5 <head> 5 <head>
6 <meta charset="utf-8"> 6 <meta charset="utf-8">
7 <meta name="viewport" content="width=device-width, initial-scale=1"> 7 <meta name="viewport" content="width=device-width, initial-scale=1">
8 <title>Bluetooth Internals</title> 8 <title>Bluetooth Internals</title>
9 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 9 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
10 <link rel="stylesheet" href="bluetooth_internals.css"> 10 <link rel="stylesheet" href="bluetooth_internals.css">
(...skipping 17 matching lines...) Expand all
28 </header> 28 </header>
29 </body> 29 </body>
30 30
31 <template id="table-template"> 31 <template id="table-template">
32 <table> 32 <table>
33 <thead> 33 <thead>
34 <tr> 34 <tr>
35 <th data-field="name_for_display">Name</th> 35 <th data-field="name_for_display">Name</th>
36 <th data-field="address">Address</th> 36 <th data-field="address">Address</th>
37 <th data-field="rssi.value">Latest RSSI</th> 37 <th data-field="rssi.value">Latest RSSI</th>
38 <th data-field="services.length">Services</th>
38 </tr> 39 </tr>
39 </thead> 40 </thead>
40 <tbody class="table-body"> 41 <tbody class="table-body">
41 </tbody> 42 </tbody>
42 </table> 43 </table>
43 </template> 44 </template>
44 45
45 </html> 46 </html>
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/bluetooth_internals/device_collection.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698