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

Unified Diff: chrome/browser/resources/chromeos/switch_access/options.html

Issue 2760453002: Creating options page and storing preferences. (Closed)
Patch Set: Responded to comments Created 3 years, 9 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/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>
+

Powered by Google App Engine
This is Rietveld 408576698