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

Unified Diff: remoting/base/compressor_zlib.h

Issue 2815043: zlib decompression for chromoting (Closed)
Patch Set: git try Created 10 years, 6 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 | « remoting/base/compressor.h ('k') | remoting/base/compressor_zlib.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/compressor_zlib.h
diff --git a/remoting/base/compressor_zlib.h b/remoting/base/compressor_zlib.h
index 93bd5cab20db5081a292f1506cb9afcb4d9f3993..5c8b91cdb17e3c06b0f810b365674c49dd5971c5 100644
--- a/remoting/base/compressor_zlib.h
+++ b/remoting/base/compressor_zlib.h
@@ -19,10 +19,9 @@ class CompressorZlib : public Compressor {
virtual ~CompressorZlib();
// Compressor implementations.
- virtual void Write(const uint8* input_data, int input_size,
- uint8* output_data, int output_size,
- int* consumed, int* written);
- virtual bool Flush(uint8* output_data, int output_size, int* written);
+ virtual bool Process(const uint8* input_data, int input_size,
+ uint8* output_data, int output_size,
+ int* consumed, int* written);
private:
scoped_ptr<z_stream> stream_;
« no previous file with comments | « remoting/base/compressor.h ('k') | remoting/base/compressor_zlib.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698