| Index: chrome/browser/resources/chromeos/switch_access/options.html
|
| diff --git a/chrome/browser/resources/chromeos/switch_access/options.html b/chrome/browser/resources/chromeos/switch_access/options.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ab5ddc8ac4d7687f7b674415e357d55e9208ba34
|
| --- /dev/null
|
| +++ b/chrome/browser/resources/chromeos/switch_access/options.html
|
| @@ -0,0 +1,29 @@
|
| +<!-- Copyright 2017 The Chromium Authors. All rights reserved.
|
| + Use of this source code is governed by a BSD-style license that can be
|
| + found in the LICENSE file. -->
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| + <title>Switch Access Options</title>
|
| + <link href="options.css" rel="stylesheet" type="text/css">
|
| +</head>
|
| +<body>
|
| + <h1>Switch Access Options</h1>
|
| + <h2>Auto-Scan</h2>
|
| + <div>
|
| + <label>
|
| + <input id="enableAutoScan" type="checkbox">
|
| + Enable auto-scan
|
| + </label>
|
| + </div>
|
| + <div>
|
| + <!-- TODO(elichtenberg) i18n for pref ids -->
|
| + <label id="autoScanTimeLabel">
|
| + <span>Set auto-scan time in seconds:</span>
|
| + <input id="autoScanTime" type="number" min=".05" step=".05" value="1">
|
| + </label>
|
| + </div>
|
| + <script type="text/javascript" src="options.js"></script>
|
| +</body>
|
| +</html>
|
| +
|
|
|