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

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: Renaming mojom, ConnectErrorCode changes 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 15 matching lines...) Expand all
26 </header> 26 </header>
27 </body> 27 </body>
28 28
29 <template id="table-template"> 29 <template id="table-template">
30 <table> 30 <table>
31 <thead> 31 <thead>
32 <tr> 32 <tr>
33 <th data-field="name_for_display">Name</th> 33 <th data-field="name_for_display">Name</th>
34 <th data-field="address">Address</th> 34 <th data-field="address">Address</th>
35 <th data-field="rssi.value">Latest RSSI</th> 35 <th data-field="rssi.value">Latest RSSI</th>
36 <th data-field="services.length">Services</th>
36 </tr> 37 </tr>
37 </thead> 38 </thead>
38 <tbody class="table-body"> 39 <tbody class="table-body">
39 </tbody> 40 </tbody>
40 </table> 41 </table>
41 </template> 42 </template>
42 43
43 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698