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

Unified Diff: chrome/browser/resources/bluetooth_internals/bluetooth_internals.html

Issue 2538653002: bluetooth: Add sidebar and page manager for chrome://bluetooth-internals. (Closed)
Patch Set: Fix const 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/bluetooth_internals/bluetooth_internals.html
diff --git a/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html b/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html
index 6181899737095845cece92ab4cde39afb199ba7a..fafcd7e91eb59846b66b4c803354027a135f1d57 100644
--- a/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html
+++ b/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html
@@ -6,26 +6,41 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bluetooth Internals</title>
- <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
+ <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
<link rel="stylesheet" href="bluetooth_internals.css">
+
<link rel="import" href="chrome://resources/html/cr/ui.html">
<link rel="import" href="chrome://resources/html/cr/event_target.html">
<link rel="import" href="chrome://resources/html/cr/ui/array_data_model.html">
+ <link rel="import" href="chrome://resources/html/cr/ui/focus_outline_manager.html">
+ <link rel="import" href="chrome://resources/html/cr/ui/overlay.html">
+ <link rel="import" href="chrome://resources/html/cr/ui/page_manager/page_manager.html">
+ <link rel="import" href="chrome://resources/html/cr/ui/page_manager/page.html">
<link rel="import" href="chrome://resources/html/util.html">
<script src="interfaces.js"></script>
<script src="adapter_broker.js"></script>
<script src="device_collection.js"></script>
<script src="device_table.js"></script>
+ <script src="devices_view.js"></script>
+ <script src="sidebar.js"></script>
<script src="bluetooth_internals.js"></script>
</head>
<body>
<header>
- <div class="title">
- Bluetooth Internals
- </div>
+ <div id="menu-btn"></div>
+ <div class="title">Bluetooth Internals</div>
</header>
+ <div id="sidebar">
+ <ul>
+ <li class="active" data-page-name="devices">Devices</li>
+ </ul>
+ </div>
+ <div id="overlay"></div>
+ <div id="page-container">
+ <div id="devices"></div>
+ </div>
</body>
<template id="table-template">
@@ -39,7 +54,7 @@
<th data-field="is_gatt_connected">GATT Connection State</th>
</tr>
</thead>
- <tbody class="table-body">
+ <tbody>
</tbody>
</table>
</template>

Powered by Google App Engine
This is Rietveld 408576698