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

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

Issue 2889333002: [MD settings] move polymer.html imports to top of file (Closed)
Patch Set: rerun Created 3 years, 7 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">
2
1 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html"> 3 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action _menu.html">
2 <link rel="import" href="chrome://resources/html/action_link.html"> 4 <link rel="import" href="chrome://resources/html/action_link.html">
3 <link rel="import" href="chrome://resources/html/action_link_css.html"> 5 <link rel="import" href="chrome://resources/html/action_link_css.html">
4 <link rel="import" href="chrome://resources/html/assert.html"> 6 <link rel="import" href="chrome://resources/html/assert.html">
5 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> 7 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html">
6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 8 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
7 <link rel="import" href="chrome://resources/html/polymer.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
9 <link rel="import" href="../i18n_setup.html"> 10 <link rel="import" href="../i18n_setup.html">
10 <link rel="import" href="../settings_shared_css.html"> 11 <link rel="import" href="../settings_shared_css.html">
11 <link rel="import" href="../controls/extension_controlled_indicator.html"> 12 <link rel="import" href="../controls/extension_controlled_indicator.html">
12 <link rel="import" href="../controls/settings_toggle_button.html"> 13 <link rel="import" href="../controls/settings_toggle_button.html">
13 <link rel="import" href="../prefs/prefs.html"> 14 <link rel="import" href="../prefs/prefs.html">
14 <link rel="import" href="address_edit_dialog.html"> 15 <link rel="import" href="address_edit_dialog.html">
15 <link rel="import" href="credit_card_edit_dialog.html"> 16 <link rel="import" href="credit_card_edit_dialog.html">
16 <link rel="import" href="passwords_shared_css.html"> 17 <link rel="import" href="passwords_shared_css.html">
17 18
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 </button> 190 </button>
190 </dialog> 191 </dialog>
191 <template is="dom-if" if="[[showCreditCardDialog_]]" restamp> 192 <template is="dom-if" if="[[showCreditCardDialog_]]" restamp>
192 <settings-credit-card-edit-dialog credit-card="[[activeCreditCard]]" 193 <settings-credit-card-edit-dialog credit-card="[[activeCreditCard]]"
193 on-close="onCreditCardDialogClosed_"> 194 on-close="onCreditCardDialogClosed_">
194 </settings-credit-card-edit-dialog> 195 </settings-credit-card-edit-dialog>
195 </template> 196 </template>
196 </template> 197 </template>
197 <script src="autofill_section.js"></script> 198 <script src="autofill_section.js"></script>
198 </dom-module> 199 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698