summaryrefslogtreecommitdiffstats
path: root/remoting/client/frame_consumer.h
diff options
context:
space:
mode:
authorrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-24 03:23:23 +0000
committerrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-24 03:23:23 +0000
commit22f58a413b507463f97804a947c732d9a1c7eec6 (patch)
treeeb5e11bb4ab6b25b220648cb346d2a6d712de133 /remoting/client/frame_consumer.h
parent4466cbde3ee2d518081872862e3cfe741731540e (diff)
downloadchromium_src-22f58a413b507463f97804a947c732d9a1c7eec6.zip
chromium_src-22f58a413b507463f97804a947c732d9a1c7eec6.tar.gz
chromium_src-22f58a413b507463f97804a947c732d9a1c7eec6.tar.bz2
Revert 118790 - Compile error due to missing operator== on SkRegion
Replace RectVectors with SkRegions in Decoder. BUG=105401 Review URL: http://codereview.chromium.org/9277001 TBR=wez@chromium.org Review URL: https://chromiumcodereview.appspot.com/9146030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118793 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 de56d81..65b0c64 100644
--- a/remoting/client/frame_consumer.h
+++ b/remoting/client/frame_consumer.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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 all
- // of |region|.
+ // output is produced. The |frame| is guaranteed to have valid data for every
+ // region included in the |rects| list.
//
- // Both |frame| and |region| are guaranteed to be valid until the |done|
+ // Both |frame| and |rects| are guaranteed to be valid until the |done|
// callback is invoked.
virtual void OnPartialFrameOutput(media::VideoFrame* frame,
- SkRegion* region,
+ RectVector* rects,
const base::Closure& done) = 0;
private: