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

Unified Diff: ui/file_manager/zip_archiver/cpp/volume_reader.h

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
Index: ui/file_manager/zip_archiver/cpp/volume_reader.h
diff --git a/ui/file_manager/zip_archiver/cpp/volume_reader.h b/ui/file_manager/zip_archiver/cpp/volume_reader.h
index a30840091415edf2385494d0776574ed1176aad1..27b4f31efad9706cb8f0aec9721334e48f56959e 100644
--- a/ui/file_manager/zip_archiver/cpp/volume_reader.h
+++ b/ui/file_manager/zip_archiver/cpp/volume_reader.h
@@ -7,8 +7,8 @@
#include <string>
-// Defines a reader for archive volumes. This class is used by libarchive
-// for custom reads: https://github.com/libarchive/libarchive/wiki/Examples
+// Defines a reader for archive volumes. This class is used by minizip
+// for custom reads.
class VolumeReader {
public:
virtual ~VolumeReader() {}
@@ -18,7 +18,7 @@ class VolumeReader {
// VolumeReaderJavaScriptStream. *destination_buffer must be available until
// the next VolumeReader:Read call or until VolumeReader is destructed.
//
- // The operation must be synchronous (libarchive requirement), so it
+ // The operation must be synchronous (minizip requirement), so it
// should NOT be done on the main thread. bytes_to_read should be > 0.
//
// Returns the actual number of read bytes or -1 in case of failure.

Powered by Google App Engine
This is Rietveld 408576698