Chromium Code Reviews| 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..c2c130fa37ca4c354dbea9f20a8755bf4a03507f |
| --- /dev/null |
| +++ b/chrome/browser/resources/chromeos/switch_access/options.html |
| @@ -0,0 +1,28 @@ |
| +<!-- 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> |
| + <label id="autoScanTimeLabel"> |
|
David Tseng
2017/03/24 18:53:11
Just fyi (for future cl), we'll have to i18n these
elichtenberg
2017/03/25 00:02:19
Good point, sounds good.
|
| + <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> |
| + |