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

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

Issue 2807063002: Replace Libarchive with MiniZip. (Closed)
Patch Set: Fix a few nits. 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 <dom-module id="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 <!-- TODO(takise): Translation -->
7 <paper-input-decorator label="{{ 'passphraseInputLabel' | i18n }}"> 7 <h3>This file is password protected</h3>
8 <paper-input-decorator>
9 <!-- TODO(takise): Translation -->
10 Password
8 <input is="core-input" type="password" id="input" autofocus> 11 <input is="core-input" type="password" id="input" autofocus>
9 </paper-input-decorator> 12 </paper-input-decorator>
10 <div id="bar"> 13 <div id="bar">
11 <paper-checkbox id="remember" 14 <paper-checkbox id="remember">
12 label="{{ 'passphraseRemember' | i18n }}"></paper-checkbox> 15 <!-- TODO(takise): Translation -->
16 Remember
17 </paper-checkbox>
13 <div id="buttons"> 18 <div id="buttons">
14 <paper-button on-click="{{cancel}}" id="cancelButton"> 19 <paper-button on-click="cancel" id="cancelButton">
15 {{ 'passphraseCancel' | i18n }} 20 <!-- TODO(takise): Translation -->
21 Cancel
16 </paper-button> 22 </paper-button>
17 <paper-button on-click="{{accept}}" id="acceptButton"> 23 <paper-button on-click="accept" id="acceptButton">
18 {{ 'passphraseAccept' | i18n }} 24 <!-- TODO(takise): Translation -->
25 Accept
19 </paper-button> 26 </paper-button>
20 </div> 27 </div>
21 </div> 28 </div>
22 </template> 29 </template>
23 <script src="../js/passphrase-dialog.js"></script> 30 <script src="../js/passphrase-dialog.js"></script>
24 </polymer-element> 31 </dom-module>
OLDNEW
« no previous file with comments | « ui/file_manager/zip_archiver/cpp/volume_reader_javascript_stream.cc ('k') | ui/file_manager/zip_archiver/js/app.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698