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

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

Issue 2576603002: bluetooth: Add device details page with basic properties to internals page. (Closed)
Patch Set: Add CSS for handling long device names Created 3 years, 11 months 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 c4101e3414c0df03ca5a9ec8b977eeb38d3a5863..bd934274f3e1a41cacf8dbb13b7c3221a9dc19c3 100644
--- a/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html
+++ b/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html
@@ -25,6 +25,7 @@
<script src="object_fieldset.js"></script>
<script src="adapter_page.js"></script>
<script src="device_collection.js"></script>
+ <script src="device_details_page.js"></script>
<script src="device_table.js"></script>
<script src="devices_page.js"></script>
<script src="sidebar.js"></script>
@@ -37,7 +38,7 @@
<button id="menu-btn" class="custom-appearance"></button>
<h1 class="page-title"></h1>
</header>
- <section id="adapter" hidden>
+ <section id="adapter" class="flex" hidden>
<div class="header-extras">
<button id="adapter-refresh-btn">Refresh</button>
</div>
@@ -85,4 +86,15 @@
</table>
</template>
+<template id="device-details-template">
+ <div class="device-details-container">
+ <div class="header-extras">
+ <button class="disconnect-btn">Disconnect</button>
+ <button class="forget-btn">Forget</button>
+ </div>
+ <h3>Status</h3>
+ <section class="device-details flex"></section>
+ </div>
+</template>
+
</html>

Powered by Google App Engine
This is Rietveld 408576698