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

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

Issue 2807063002: Replace Libarchive with MiniZip. (Closed)
Patch Set: Delete BUILD.gn 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/javascript_compressor_requestor_interface.h
diff --git a/ui/file_manager/zip_archiver/cpp/javascript_compressor_requestor_interface.h b/ui/file_manager/zip_archiver/cpp/javascript_compressor_requestor_interface.h
index 367c02196d14f727141382dec570dc9cc545b196..59dbd57f439c0a4bdcfc6c7330fcad5d126c61ed 100644
--- a/ui/file_manager/zip_archiver/cpp/javascript_compressor_requestor_interface.h
+++ b/ui/file_manager/zip_archiver/cpp/javascript_compressor_requestor_interface.h
@@ -12,7 +12,8 @@ class JavaScriptCompressorRequestorInterface {
public:
virtual ~JavaScriptCompressorRequestorInterface() {}
- virtual void WriteChunkRequest(int64_t length,
+ virtual void WriteChunkRequest(int64_t offset,
+ int64_t length,
const pp::VarArrayBuffer& buffer) = 0;
virtual void ReadFileChunkRequest(int64_t length) = 0;

Powered by Google App Engine
This is Rietveld 408576698