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

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

Issue 2156413002: Settings Router Refactor: Migrate to settings.Route.navigateTo calls. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use timing fix 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"> 3 <link rel="import" href="/people_page/quick_unlock_routing_behavior.html">
4 <link rel="import" href="/route.html">
4 <link rel="import" href="/settings_page/settings_section.html"> 5 <link rel="import" href="/settings_page/settings_section.html">
5 <link rel="import" href="/settings_shared_css.html"> 6 <link rel="import" href="/settings_shared_css.html">
6 7
7 <dom-module id="settings-quick-unlock-authenticate"> 8 <dom-module id="settings-quick-unlock-authenticate">
8 <template> 9 <template>
9 <style include="settings-shared"></style> 10 <style include="settings-shared"></style>
10 <style> 11 <style>
11 #profile-name { 12 #profile-name {
12 margin-right: 16px; 13 margin-right: 16px;
13 } 14 }
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 on-input="startDelayedPasswordCheck_" 46 on-input="startDelayedPasswordCheck_"
46 error-message="$i18n{quickUnlockInvalidPassword}" 47 error-message="$i18n{quickUnlockInvalidPassword}"
47 aria-disabled="false"> 48 aria-disabled="false">
48 </paper-input> 49 </paper-input>
49 </div> 50 </div>
50 </div> 51 </div>
51 </template> 52 </template>
52 53
53 <script src="quick_unlock_authenticate.js"></script> 54 <script src="quick_unlock_authenticate.js"></script>
54 </dom-module> 55 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698