summaryrefslogtreecommitdiffstats
path: root/remoting/client/frame_consumer.h
diff options
context:
space:
mode:
authorwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-29 03:45:17 +0000
committerwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-29 03:45:17 +0000
commita9c88d1dec9f3532e16b8a7c80ff918a57e548c5 (patch)
tree0be954e8dc70f8c11e193f1ff6012ca731820852 /remoting/client/frame_consumer.h
parentefcbe466225a33f01ec1d0ae6b65ff665cada2c5 (diff)
downloadchromium_src-a9c88d1dec9f3532e16b8a7c80ff918a57e548c5.zip
chromium_src-a9c88d1dec9f3532e16b8a7c80ff918a57e548c5.tar.gz
chromium_src-a9c88d1dec9f3532e16b8a7c80ff918a57e548c5.tar.bz2
Replace RectVectors with SkRegions in Decoder.
BUG=105401 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=118790 Review URL: http://codereview.chromium.org/9277001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119632 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/client/frame_consumer.h')
-rw-r--r--remoting/client/frame_consumer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/remoting/client/frame_consumer.h b/remoting/client/frame_consumer.h
index 65b0c64..de56d81 100644
--- a/remoting/client/frame_consumer.h
+++ b/remoting/client/frame_consumer.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -40,13 +40,13 @@ class FrameConsumer {
virtual void ReleaseFrame(media::VideoFrame* frame) = 0;
// OnPartialFrameOutput() is called every time at least one rectangle of
- // output is produced. The |frame| is guaranteed to have valid data for every
- // region included in the |rects| list.
+ // output is produced. The |frame| is guaranteed to have valid data for all
+ // of |region|.
//
- // Both |frame| and |rects| are guaranteed to be valid until the |done|
+ // Both |frame| and |region| are guaranteed to be valid until the |done|
// callback is invoked.
virtual void OnPartialFrameOutput(media::VideoFrame* frame,
- RectVector* rects,
+ SkRegion* region,
const base::Closure& done) = 0;
private: