blob: befe1135e4c7e57416881bb2f7371337028597d3 [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<!-- TODO(crbug.com/658814): Localize strings. -->
<head>
<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/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/action_link.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_page.js"></script>
<script src="sidebar.js"></script>
<script src="bluetooth_internals.js"></script>
</head>
<body>
<div id="page-container">
<header class="page-header">
<button id="menu-btn" class="custom-appearance"></button>
<h1 class="page-title"></h1>
</header>
<section id="devices" hidden></section>
</div>
<aside id="sidebar">
<div class="overlay"></div>
<section class="sidebar-content">
<header>
<h1>Bluetooth Internals</h1>
</header>
<nav>
<ul role="tablist">
<li class="selected" data-page-name="devices">
<button class="custom-appearance">Devices</button>
</li>
</ul>
</nav>
</section>
</aside>
</body>
<template id="table-template">
<table>
<thead>
<tr>
<th data-field="name_for_display">Name</th>
<th data-field="address">Address</th>
<th data-field="rssi.value">Latest RSSI</th>
<th data-field="services.length">Services</th>
<th data-field="is_gatt_connected">GATT Connection State</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</template>
</html>