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

Side by Side Diff: chrome/browser/resources/settings/certificate_manager_page/certificate_password_decryption_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-input/paper-input .html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
5 <link rel="import" href="../i18n_setup.html"> 6 <link rel="import" href="../i18n_setup.html">
6 <link rel="import" href="../settings_shared_css.html"> 7 <link rel="import" href="../settings_shared_css.html">
7 <link rel="import" href="certificates_browser_proxy.html"> 8 <link rel="import" href="certificates_browser_proxy.html">
8 9
9 <dom-module id="settings-certificate-password-decryption-dialog"> 10 <dom-module id="settings-certificate-password-decryption-dialog">
10 <template> 11 <template>
11 <style include="settings-shared"></style> 12 <style include="settings-shared"></style>
12 <dialog is="cr-dialog" id="dialog" close-text="$i18n{close}"> 13 <dialog is="cr-dialog" id="dialog" close-text="$i18n{close}">
13 <div class="title">$i18n{certificateManagerDecryptPasswordTitle}</div> 14 <div class="title">$i18n{certificateManagerDecryptPasswordTitle}</div>
14 <div class="body"> 15 <div class="body">
15 <paper-input type="password" id="password" 16 <paper-input type="password" id="password"
16 label="$i18n{certificateManagerPassword}" value="{{password_}}"> 17 label="$i18n{certificateManagerPassword}" value="{{password_}}">
17 </paper-input> 18 </paper-input>
18 </div> 19 </div>
19 <div class="button-container"> 20 <div class="button-container">
20 <paper-button class="cancel-button" on-tap="onCancelTap_"> 21 <paper-button class="cancel-button" on-tap="onCancelTap_">
21 $i18n{cancel} 22 $i18n{cancel}
22 </paper-button> 23 </paper-button>
23 <paper-button id="ok" class="action-button" on-tap="onOkTap_"> 24 <paper-button id="ok" class="action-button" on-tap="onOkTap_">
24 $i18n{ok} 25 $i18n{ok}
25 </paper-button> 26 </paper-button>
26 </div> 27 </div>
27 </dialog> 28 </dialog>
28 </template> 29 </template>
29 <script src="certificate_password_decryption_dialog.js"></script> 30 <script src="certificate_password_decryption_dialog.js"></script>
30 </dom-module> 31 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698