diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-22 18:16:53 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-22 18:16:53 +0000 |
commit | d3a4b09d49a617e667e79c387fbe3570c7fac950 (patch) | |
tree | b67e7d9e794de45f347f745020b8af370a523f6c /remoting/base/decoder_row_based.h | |
parent | 20a648064480d72460d3b6b0b211ea781cdd6c55 (diff) | |
download | chromium_src-d3a4b09d49a617e667e79c387fbe3570c7fac950.zip chromium_src-d3a4b09d49a617e667e79c387fbe3570c7fac950.tar.gz chromium_src-d3a4b09d49a617e667e79c387fbe3570c7fac950.tar.bz2 |
Change chromoting images to upright by default
Remove all the ugly code to have reverse rows. All images are upright now.
BUG=71872
TEST=Everything in chromoting still works and upright.
Review URL: http://codereview.chromium.org/6546057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75609 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/base/decoder_row_based.h')
-rw-r--r-- | remoting/base/decoder_row_based.h | 8 |
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); |