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

Unified Diff: chrome/browser/resources/chromeos/login/oobe_screen_hid_detection.html

Issue 252503002: Base version of HID detection OOBE screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Passkey support added. Improved BT-connection logic. Created 6 years, 8 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/login/oobe_screen_hid_detection.html
diff --git a/chrome/browser/resources/chromeos/login/oobe_screen_hid_detection.html b/chrome/browser/resources/chromeos/login/oobe_screen_hid_detection.html
index 4dcf73b1d6282cbcb59af70901ea690bef4ff5ca..ffebb67c7a5549bb1a385803eeaae20028f1944a 100644
--- a/chrome/browser/resources/chromeos/login/oobe_screen_hid_detection.html
+++ b/chrome/browser/resources/chromeos/login/oobe_screen_hid_detection.html
@@ -1,12 +1,63 @@
-<div class="step hidden" id="hid-detection">
+<div class="step hidden" id="hid-detection" hidden>
<div class="step-contents">
- <div id="logo"></div>
- <div id="hid-invitation-text"></div>
+ <div id="hid-invitation-text" i18n-content="hidDetectionInvitation"></div>
+ <div id="hid-prerequisite-msg" i18n-content="hidDetectionPrerequisites">
+ </div>
<div id="hid-mouse-block">
- <img id="hid-mouse-icon">
+ <div id="hid-mouse-icon-block">
+ <img id="hid-mouse-icon" src="chrome://theme/IDR_LOGIN_DEFAULT_USER_16"
+ alt="">
+ <img id="hid-mouse-tick" src="chrome://theme/IDR_UPDATE_UPTODATE"
+ alt="">
+ </div>
+ <div id="hid-mouse-label">
+ <span i18n-content="hidDetectionMouseSearching"
+ id="hid-mouse-label-searching" class="label">
+ </span>
+ <span i18n-content="hidDetectionUSBMouseConnected"
+ id="hid-mouse-label-connected" class="label">
+ </span>
+ <span i18n-content="hidDetectionBTMousePaired"
+ id="hid-mouse-label-paired" class="label">
+ </span>
+ </div>
</div>
<div id="hid-keyboard-block">
- <img id="hid-keyboard-icon">
+ <div id="hid-keyboard-icon-block">
+ <img id="hid-keyboard-icon" src="chrome://theme/IDR_RESET_WARNING"
+ alt="">
+ <img id="hid-keyboard-tick" src="chrome://theme/IDR_UPDATE_UPTODATE"
+ alt="">
+ </div>
+ <div id="hid-keyboard-label">
+ <span i18n-content="hidDetectionKeyboardSearching"
+ id="hid-keyboard-label-searching" class="label">
Nikita (slow) 2014/04/28 08:30:28 nit: Place id attribute first (for all elements th
merkulova 2014/04/29 10:30:24 Done.
+ </span>
+ <span i18n-content="hidDetectionUSBKeyboardConnected"
+ id="hid-keyboard-label-connected" class="label">
+ </span>
+ <span id="hid-keyboard-label-paired" class="label">
+ </span>
+ <span id="hid-keyboard-label-pairing" class="label"></span>
+ </div>
+ <div id="hid-keyboard-pincode">
+ <div id="hid-keyboard-pincode-sym-1" class="bluetooth-keyboard-button">
+ </div>
+ <div id="hid-keyboard-pincode-sym-2" class="bluetooth-keyboard-button">
+ </div>
+ <div id="hid-keyboard-pincode-sym-3" class="bluetooth-keyboard-button">
+ </div>
+ <div id="hid-keyboard-pincode-sym-4" class="bluetooth-keyboard-button">
+ </div>
+ <div id="hid-keyboard-pincode-sym-5" class="bluetooth-keyboard-button">
+ </div>
+ <div id="hid-keyboard-pincode-sym-6" class="bluetooth-keyboard-button">
+ </div>
+ <div id="hid-keyboard-pincode-enter"
+ i18n-content="hidDetectionBTEnterKey"
+ class="bluetooth-keyboard-button">
+ </div>
+ </div>
</div>
</div>
<div id="hid-detection-controls" class="step-controls"></div>

Powered by Google App Engine
This is Rietveld 408576698