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

Side by Side Diff: chrome/browser/resources/settings/passwords_and_forms_page/password_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/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
6 <link rel="import" href="../icons.html"> 7 <link rel="import" href="../icons.html">
7 <link rel="import" href="../settings_shared_css.html"> 8 <link rel="import" href="../settings_shared_css.html">
8 9
9 <dom-module id="password-edit-dialog"> 10 <dom-module id="password-edit-dialog">
10 <template> 11 <template>
11 <style include="settings-shared"> 12 <style include="settings-shared">
12 paper-input[readonly] { 13 paper-input[readonly] {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 </div> 65 </div>
65 <div class="button-container"> 66 <div class="button-container">
66 <paper-button class="action-button" on-tap="onActionButtonTap_"> 67 <paper-button class="action-button" on-tap="onActionButtonTap_">
67 $i18n{passwordsDone} 68 $i18n{passwordsDone}
68 </paper-button> 69 </paper-button>
69 </div> 70 </div>
70 </dialog> 71 </dialog>
71 </template> 72 </template>
72 <script src="password_edit_dialog.js"></script> 73 <script src="password_edit_dialog.js"></script>
73 </dom-module> 74 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698