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

Side by Side Diff: chrome/browser/resources/settings/people_page/quick_unlock_authenticate.html

Issue 2154213008: Settings Router Refactor: Clean up Quick Unlock (and a few misc fixes) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@0211-settings-router-impl-part-3-navigateTo
Patch Set: change test Created 4 years, 4 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 unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
3 <link rel="import" href="/people_page/quick_unlock_routing_behavior.html">
4 <link rel="import" href="/route.html"> 3 <link rel="import" href="/route.html">
5 <link rel="import" href="/settings_page/settings_section.html"> 4 <link rel="import" href="/settings_page/settings_section.html">
6 <link rel="import" href="/settings_shared_css.html"> 5 <link rel="import" href="/settings_shared_css.html">
7 6
8 <dom-module id="settings-quick-unlock-authenticate"> 7 <dom-module id="settings-quick-unlock-authenticate">
9 <template> 8 <template>
10 <style include="settings-shared"></style> 9 <style include="settings-shared"></style>
11 <style> 10 <style>
12 #profile-name { 11 #profile-name {
13 margin-right: 16px; 12 margin-right: 16px;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 on-input="startDelayedPasswordCheck_" 45 on-input="startDelayedPasswordCheck_"
47 error-message="$i18n{quickUnlockInvalidPassword}" 46 error-message="$i18n{quickUnlockInvalidPassword}"
48 aria-disabled="false"> 47 aria-disabled="false">
49 </paper-input> 48 </paper-input>
50 </div> 49 </div>
51 </div> 50 </div>
52 </template> 51 </template>
53 52
54 <script src="quick_unlock_authenticate.js"></script> 53 <script src="quick_unlock_authenticate.js"></script>
55 </dom-module> 54 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698