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

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: Add comment for SetCallbackRan function in device connection helper 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 19 matching lines...) Expand all
30 </header> 30 </header>
31 </body> 31 </body>
32 32
33 <template id="table-template"> 33 <template id="table-template">
34 <table> 34 <table>
35 <thead> 35 <thead>
36 <tr> 36 <tr>
37 <th data-field="name_for_display">Name</th> 37 <th data-field="name_for_display">Name</th>
38 <th data-field="address">Address</th> 38 <th data-field="address">Address</th>
39 <th data-field="rssi.value">Latest RSSI</th> 39 <th data-field="rssi.value">Latest RSSI</th>
40 <th data-field="services.length">Services</th>
40 </tr> 41 </tr>
41 </thead> 42 </thead>
42 <tbody class="table-body"> 43 <tbody class="table-body">
43 </tbody> 44 </tbody>
44 </table> 45 </table>
45 </template> 46 </template>
46 47
47 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698