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

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

Issue 2568283003: bluetooth: Add notification system to internals page. (Closed)
Patch Set: Remove margin, fix bug where snackbar dismisses if shown with no focus Created 4 years 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/chrome_shared.css"> 9 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
10 <link rel="stylesheet" href="bluetooth_internals.css"> 10 <link rel="stylesheet" href="bluetooth_internals.css">
11 11
12 <link rel="import" href="chrome://resources/html/cr/ui.html"> 12 <link rel="import" href="chrome://resources/html/cr/ui.html">
13 <link rel="import" href="chrome://resources/html/cr/event_target.html"> 13 <link rel="import" href="chrome://resources/html/cr/event_target.html">
14 <link rel="import" href="chrome://resources/html/cr/ui/array_data_model.html"> 14 <link rel="import" href="chrome://resources/html/cr/ui/array_data_model.html">
15 <link rel="import" href="chrome://resources/html/cr/ui/focus_outline_manager.h tml"> 15 <link rel="import" href="chrome://resources/html/cr/ui/focus_outline_manager.h tml">
16 <link rel="import" href="chrome://resources/html/cr/ui/overlay.html"> 16 <link rel="import" href="chrome://resources/html/cr/ui/overlay.html">
17 <link rel="import" href="chrome://resources/html/cr/ui/page_manager/page_manag er.html"> 17 <link rel="import" href="chrome://resources/html/cr/ui/page_manager/page_manag er.html">
18 <link rel="import" href="chrome://resources/html/cr/ui/page_manager/page.html" > 18 <link rel="import" href="chrome://resources/html/cr/ui/page_manager/page.html" >
19 <link rel="import" href="chrome://resources/html/action_link.html"> 19 <link rel="import" href="chrome://resources/html/action_link.html">
20 <link rel="import" href="chrome://resources/html/util.html"> 20 <link rel="import" href="chrome://resources/html/util.html">
21 21
22 <script src="snackbar.js"></script>
22 <script src="interfaces.js"></script> 23 <script src="interfaces.js"></script>
23 <script src="adapter_broker.js"></script> 24 <script src="adapter_broker.js"></script>
24 <script src="device_collection.js"></script> 25 <script src="device_collection.js"></script>
25 <script src="device_table.js"></script> 26 <script src="device_table.js"></script>
26 <script src="devices_page.js"></script> 27 <script src="devices_page.js"></script>
27 <script src="sidebar.js"></script> 28 <script src="sidebar.js"></script>
28 <script src="bluetooth_internals.js"></script> 29 <script src="bluetooth_internals.js"></script>
29 </head> 30 </head>
30 31
31 <body> 32 <body>
32 <div id="page-container"> 33 <div id="page-container">
33 <header class="page-header"> 34 <header class="page-header">
34 <button id="menu-btn" class="custom-appearance"></button> 35 <button id="menu-btn" class="custom-appearance"></button>
35 <h1 class="page-title"></h1> 36 <h1 class="page-title"></h1>
36 </header> 37 </header>
37 <section id="devices" hidden></section> 38 <section id="devices" hidden></section>
38 </div> 39 </div>
40 <div id="snackbar-container"></div>
39 <aside id="sidebar"> 41 <aside id="sidebar">
40 <div class="overlay"></div> 42 <div class="overlay"></div>
41 <section class="sidebar-content"> 43 <section class="sidebar-content">
42 <header> 44 <header>
43 <h1>Bluetooth Internals</h1> 45 <h1>Bluetooth Internals</h1>
44 </header> 46 </header>
45 <nav> 47 <nav>
46 <ul role="tablist"> 48 <ul role="tablist">
47 <li class="selected" data-page-name="devices"> 49 <li class="selected" data-page-name="devices">
48 <button class="custom-appearance">Devices</button> 50 <button class="custom-appearance">Devices</button>
(...skipping 14 matching lines...) Expand all
63 <th data-field="services.length">Services</th> 65 <th data-field="services.length">Services</th>
64 <th data-field="is_gatt_connected">GATT Connection State</th> 66 <th data-field="is_gatt_connected">GATT Connection State</th>
65 </tr> 67 </tr>
66 </thead> 68 </thead>
67 <tbody> 69 <tbody>
68 </tbody> 70 </tbody>
69 </table> 71 </table>
70 </template> 72 </template>
71 73
72 </html> 74 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698