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

Side by Side Diff: chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html

Issue 2627123002: Load Passwords and Autofill in the corresponding sub page. (Closed)
Patch Set: rebase Created 3 years, 10 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/assert.html"> 1 <link rel="import" href="chrome://resources/html/assert.html">
2 <link rel="import" href="chrome://resources/html/cr.html"> 2 <link rel="import" href="chrome://resources/html/cr.html">
3 <link rel="import" href="chrome://resources/html/polymer.html"> 3 <link rel="import" href="chrome://resources/html/polymer.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html">
7 <link rel="import" href="autofill_section.html"> 7 <link rel="import" href="autofill_section.html">
8 <link rel="import" href="passwords_section.html"> 8 <link rel="import" href="passwords_section.html">
9 <link rel="import" href="../prefs/prefs.html"> 9 <link rel="import" href="../prefs/prefs.html">
10 <link rel="import" href="../prefs/prefs_behavior.html"> 10 <link rel="import" href="../prefs/prefs_behavior.html">
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 <paper-toggle-button id="passwordToggle" 56 <paper-toggle-button id="passwordToggle"
57 checked="{{prefs.credentials_enable_service.value}}"> 57 checked="{{prefs.credentials_enable_service.value}}">
58 </paper-toggle-button> 58 </paper-toggle-button>
59 </div> 59 </div>
60 </div> 60 </div>
61 </neon-animatable> 61 </neon-animatable>
62 <template is="dom-if" route-path="/autofill"> 62 <template is="dom-if" route-path="/autofill">
63 <settings-subpage 63 <settings-subpage
64 associated-control="[[$$('#autofillManagerButton')]]" 64 associated-control="[[$$('#autofillManagerButton')]]"
65 page-title="$i18n{autofill}"> 65 page-title="$i18n{autofill}">
66 <settings-autofill-section id="autofillSection" 66 <settings-autofill-section id="autofillSection">
67 addresses="[[addresses]]" credit-cards="[[creditCards]]">
68 </settings-autofill-section> 67 </settings-autofill-section>
69 </settings-subpage> 68 </settings-subpage>
70 </template> 69 </template>
71 <template is="dom-if" route-path="/passwords"> 70 <template is="dom-if" route-path="/passwords">
72 <settings-subpage 71 <settings-subpage
73 associated-control="[[$$('#passwordManagerButton')]]" 72 associated-control="[[$$('#passwordManagerButton')]]"
74 page-title="$i18n{passwords}" 73 page-title="$i18n{passwords}"
75 learn-more-url="$i18n{passwordManagerLearnMoreURL}" 74 learn-more-url="$i18n{passwordManagerLearnMoreURL}"
76 search-label="$i18n{searchPasswords}" 75 search-label="$i18n{searchPasswords}"
77 search-term="{{passwordFilter_}}"> 76 search-term="{{passwordFilter_}}">
78 <passwords-section saved-passwords="[[savedPasswords]]" 77 <passwords-section id="passwordSection" filter="[[passwordFilter_]]"
79 id="passwordSection" password-exceptions="[[passwordExceptions]]" 78 prefs="{{prefs}}">
80 filter="[[passwordFilter_]]" prefs="{{prefs}}">
81 </passwords-section> 79 </passwords-section>
82 </settings-subpage> 80 </settings-subpage>
83 </template> 81 </template>
84 </settings-animated-pages> 82 </settings-animated-pages>
85 </template> 83 </template>
86 <script src="passwords_and_forms_page.js"></script> 84 <script src="passwords_and_forms_page.js"></script>
87 </dom-module> 85 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698