summaryrefslogtreecommitdiffstats
path: root/remoting/base/decoder_row_based.h
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/base/decoder_row_based.h')
-rw-r--r--remoting/base/decoder_row_based.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/remoting/base/decoder_row_based.h b/remoting/base/decoder_row_based.h
index 05c2e3c..2afd60e 100644
--- a/remoting/base/decoder_row_based.h
+++ b/remoting/base/decoder_row_based.h
@@ -26,11 +26,6 @@ class DecoderRowBased : public Decoder {
virtual void Reset();
virtual VideoPacketFormat::Encoding Encoding();
- // TODO(hclam): Should make this into the Decoder interface.
- // TODO(ajwong): Before putting into the interface, we should decide if the
- // Host should normalize the coordinate system.
- void set_reverse_rows(bool reverse) { reverse_rows_ = reverse; }
-
private:
enum State {
kUninitialized,
@@ -68,9 +63,6 @@ class DecoderRowBased : public Decoder {
// The current row in the rect that we are updaing.
int row_y_;
- // True if we should decode the image upside down.
- bool reverse_rows_;
-
UpdatedRects updated_rects_;
DISALLOW_COPY_AND_ASSIGN(DecoderRowBased);