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

Side by Side Diff: ui/file_manager/zip_archiver/js/passphrase-manager.js

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 // Copyright 2015 The Chromium OS Authors. All rights reserved. 1 // Copyright 2015 The Chromium OS Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @constructor 6 * @constructor
7 * @param {?string} initPassphrase Initial passphrase for the first passphrase 7 * @param {?string} initPassphrase Initial passphrase for the first passphrase
8 * request or NULL if not available. In such case, call to getPassphrase() 8 * request or NULL if not available. In such case, call to getPassphrase()
9 * will invoke a dialog. 9 * will invoke a dialog.
10 */ 10 */
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 56
57 passphraseWindow.contentWindow.onPassphraseSuccess = 57 passphraseWindow.contentWindow.onPassphraseSuccess =
58 function(passphrase, remember) { 58 function(passphrase, remember) {
59 passphraseSucceeded = true; 59 passphraseSucceeded = true;
60 this.rememberedPassphrase = remember ? passphrase : null; 60 this.rememberedPassphrase = remember ? passphrase : null;
61 fulfill(passphrase); 61 fulfill(passphrase);
62 }.bind(this); 62 }.bind(this);
63 }.bind(this)); 63 }.bind(this));
64 }.bind(this)); 64 }.bind(this));
65 } 65 }
OLDNEW
« no previous file with comments | « ui/file_manager/zip_archiver/js/passphrase-dialog.js ('k') | ui/file_manager/zip_archiver/js/request.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698