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

Side by Side Diff: chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.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_dialog/cr_dialog.html "> 3 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
2 <link rel="import" href="chrome://resources/cr_elements/cr_scrollable_behavior.h tml"> 4 <link rel="import" href="chrome://resources/cr_elements/cr_scrollable_behavior.h tml">
3 <link rel="import" href="chrome://resources/html/cr.html"> 5 <link rel="import" href="chrome://resources/html/cr.html">
4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
5 <link rel="import" href="chrome://resources/html/md_select_css.html"> 7 <link rel="import" href="chrome://resources/html/md_select_css.html">
6 <link rel="import" href="chrome://resources/html/polymer.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-texta rea.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-texta rea.html">
9 <link rel="import" href="../settings_shared_css.html"> 10 <link rel="import" href="../settings_shared_css.html">
10 <link rel="import" href="../settings_vars_css.html"> 11 <link rel="import" href="../settings_vars_css.html">
11 12
12 <dom-module id="settings-address-edit-dialog"> 13 <dom-module id="settings-address-edit-dialog">
13 <template> 14 <template>
14 <style include="settings-shared md-select"> 15 <style include="settings-shared md-select">
15 :host { 16 :host {
16 --iron-autogrow-textarea: { 17 --iron-autogrow-textarea: {
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 </paper-button> 146 </paper-button>
146 <paper-button id="saveButton" class="action-button" 147 <paper-button id="saveButton" class="action-button"
147 disabled="[[!canSave_]]" on-tap="onSaveButtonTap_"> 148 disabled="[[!canSave_]]" on-tap="onSaveButtonTap_">
148 $i18n{save} 149 $i18n{save}
149 </paper-button> 150 </paper-button>
150 </div> 151 </div>
151 </dialog> 152 </dialog>
152 </template> 153 </template>
153 <script src="address_edit_dialog.js"></script> 154 <script src="address_edit_dialog.js"></script>
154 </dom-module> 155 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698