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

Side by Side Diff: ui/file_manager/zip_archiver/html/passphrase-dialog.html

Issue 2804453002: Move files from zip_archiver/unpacker/ to zip_archiver/. (Closed)
Patch Set: Move files from zip_archiver/unpacker/ to zip_archiver/. Created 3 years, 8 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="../third-party/polymer.html"> 1 <link rel="import" href="../third-party/polymer.html">
2 2
3 <polymer-element name="passphrase-dialog"> 3 <polymer-element name="passphrase-dialog">
4 <template> 4 <template>
5 <link rel="stylesheet" href="../css/passphrase-dialog.css"> 5 <link rel="stylesheet" href="../css/passphrase-dialog.css">
6 <h3>{{ 'passphraseTitle' | i18n }}</h3> 6 <h3>{{ 'passphraseTitle' | i18n }}</h3>
7 <paper-input-decorator label="{{ 'passphraseInputLabel' | i18n }}"> 7 <paper-input-decorator label="{{ 'passphraseInputLabel' | i18n }}">
8 <input is="core-input" type="password" id="input" autofocus> 8 <input is="core-input" type="password" id="input" autofocus>
9 </paper-input-decorator> 9 </paper-input-decorator>
10 <div id="bar"> 10 <div id="bar">
11 <paper-checkbox id="remember" 11 <paper-checkbox id="remember"
12 label="{{ 'passphraseRemember' | i18n }}"></paper-checkbox> 12 label="{{ 'passphraseRemember' | i18n }}"></paper-checkbox>
13 <div id="buttons"> 13 <div id="buttons">
14 <paper-button on-click="{{cancel}}" id="cancelButton"> 14 <paper-button on-click="{{cancel}}" id="cancelButton">
15 {{ 'passphraseCancel' | i18n }} 15 {{ 'passphraseCancel' | i18n }}
16 </paper-button> 16 </paper-button>
17 <paper-button on-click="{{accept}}" id="acceptButton"> 17 <paper-button on-click="{{accept}}" id="acceptButton">
18 {{ 'passphraseAccept' | i18n }} 18 {{ 'passphraseAccept' | i18n }}
19 </paper-button> 19 </paper-button>
20 </div> 20 </div>
21 </div> 21 </div>
22 </template> 22 </template>
23 <script src="../js/passphrase-dialog.js"></script> 23 <script src="../js/passphrase-dialog.js"></script>
24 </polymer-element> 24 </polymer-element>
OLDNEW
« no previous file with comments | « ui/file_manager/zip_archiver/html/passphrase.html ('k') | ui/file_manager/zip_archiver/icons/icon128.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698