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

Unified Diff: remoting/base/compressor_zlib.h

Issue 8601011: Add OVERRIDE to remoting/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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_verbatim.h ('k') | remoting/base/decoder_row_based.h » ('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 ba959cfa7743aa3e450cf5f251144e33bec0159f..32ac6c4d17220bb65b8e532bfddca4a3581c5f82 100644
--- a/remoting/base/compressor_zlib.h
+++ b/remoting/base/compressor_zlib.h
@@ -19,11 +19,15 @@ class CompressorZlib : public Compressor {
virtual ~CompressorZlib();
// Compressor implementations.
- virtual bool Process(const uint8* input_data, int input_size,
- uint8* output_data, int output_size,
- CompressorFlush flush, int* consumed, int* written);
-
- virtual void Reset();
+ virtual bool Process(const uint8* input_data,
+ int input_size,
+ uint8* output_data,
+ int output_size,
+ CompressorFlush flush,
+ int* consumed,
+ int* written) OVERRIDE;
+
+ virtual void Reset() OVERRIDE;
private:
scoped_ptr<z_stream> stream_;
« no previous file with comments | « remoting/base/compressor_verbatim.h ('k') | remoting/base/decoder_row_based.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698