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

Unified Diff: ui/file_manager/zip_archiver/js/compressor.js

Issue 2815063002: Rename variable, class, function, etc from libarchive to minizip. (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/file_manager/zip_archiver/js/app.js ('k') | ui/file_manager/zip_archiver/js/decompressor.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/zip_archiver/js/compressor.js
diff --git a/ui/file_manager/zip_archiver/js/compressor.js b/ui/file_manager/zip_archiver/js/compressor.js
index a48f514deab37a4b27873f3adcb43d802559b392..bae6e87b8dae66ceaf6126494df80dcfec7df5fd 100644
--- a/ui/file_manager/zip_archiver/js/compressor.js
+++ b/ui/file_manager/zip_archiver/js/compressor.js
@@ -138,7 +138,7 @@ unpacker.Compressor.prototype.getArchiveName_ = function() {
/**
* Starts actual compressing process.
- * Creates an archive file and requests libarchive to create an archive object.
+ * Creates an archive file and requests minizip to create an archive object.
* @param {function(!unpacker.types.CompressorId)} onSuccess
* @param {function(!unpacker.types.CompressorId)} onError
*/
@@ -265,7 +265,7 @@ unpacker.Compressor.prototype.getDirectoryEntryMetadata_ = function(dir) {
* Pops an entry from the queue and adds it to the archive.
* If another entry is in progress, this function does nothing. If there is no
* entry in the queue, it shifts to close archive process. Otherwise, this sends
- * an add to archive request for a popped entry with its metadata to libarchive.
+ * an add to archive request for a popped entry with its metadata to minizip.
* @private
*/
unpacker.Compressor.prototype.sendAddToArchiveRequest_ = function() {
@@ -301,7 +301,7 @@ unpacker.Compressor.prototype.sendAddToArchiveRequest_ = function() {
}
/**
- * Sends a close archive request to libarchive. libarchive writes metadata of
+ * Sends a close archive request to minizip. minizip writes metadata of
* the archive itself on the archive and releases objects obtainted in the
* packing process.
*/
« no previous file with comments | « ui/file_manager/zip_archiver/js/app.js ('k') | ui/file_manager/zip_archiver/js/decompressor.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698