blob: 6181899737095845cece92ab4cde39afb199ba7a [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/text_defaults_md.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/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="bluetooth_internals.js"></script>
</head>
<body>
<header>
<div class="title">
Bluetooth Internals
</div>
</header>
</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 class="table-body">
</tbody>
</table>
</template>
</html>