summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authorwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-11 23:35:09 +0000
committerwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-11 23:35:09 +0000
commitdc3db89a954f4192dbaa87e65fc2da8631d77a0d (patch)
tree450d06c3efc04cb452a2cdc3c83b0a68e06f1445 /remoting
parent91739f7f8565a38870b7ab3452b07d078ecd8bc3 (diff)
downloadchromium_src-dc3db89a954f4192dbaa87e65fc2da8631d77a0d.zip
chromium_src-dc3db89a954f4192dbaa87e65fc2da8631d77a0d.tar.gz
chromium_src-dc3db89a954f4192dbaa87e65fc2da8631d77a0d.tar.bz2
Initialize clip_rect_ member to be empty until explicitly set.
BUG=98751 Review URL: http://codereview.chromium.org/8511068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109731 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r--remoting/base/decoder_vp8.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/remoting/base/decoder_vp8.cc b/remoting/base/decoder_vp8.cc
index ff1bd77..6ce7f03 100644
--- a/remoting/base/decoder_vp8.cc
+++ b/remoting/base/decoder_vp8.cc
@@ -20,6 +20,7 @@ DecoderVp8::DecoderVp8()
: state_(kUninitialized),
codec_(NULL),
last_image_(NULL),
+ clip_rect_(SkIRect::MakeEmpty()),
horizontal_scale_ratio_(1.0),
vertical_scale_ratio_(1.0) {
}