From 13b7a84041f48a558efb24725f0568b466b08cfd Mon Sep 17 00:00:00 2001 From: "dmaclach@chromium.org" Date: Fri, 30 Sep 2011 19:57:40 +0000 Subject: Revert 103523 - Move us fully from gfx:: over to skia types for consistency. BUG=NONE TEST=BUILD Review URL: http://codereview.chromium.org/7992011 TBR=dmaclach@chromium.org Review URL: http://codereview.chromium.org/8103006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103526 0039d316-1c4b-4281-b951-d872f2087c98 --- remoting/base/decoder_row_based.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'remoting/base/decoder_row_based.h') diff --git a/remoting/base/decoder_row_based.h b/remoting/base/decoder_row_based.h index e47ed89..2afd60e 100644 --- a/remoting/base/decoder_row_based.h +++ b/remoting/base/decoder_row_based.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 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. @@ -22,7 +22,7 @@ class DecoderRowBased : public Decoder { virtual bool IsReadyForData(); virtual void Initialize(scoped_refptr frame); virtual DecodeResult DecodePacket(const VideoPacket* packet); - virtual void GetUpdatedRects(RectVector* rects); + virtual void GetUpdatedRects(UpdatedRects* rects); virtual void Reset(); virtual VideoPacketFormat::Encoding Encoding(); @@ -46,7 +46,7 @@ class DecoderRowBased : public Decoder { State state_; // Keeps track of the updating rect. - SkIRect clip_; + gfx::Rect clip_; // The video frame to write to. scoped_refptr frame_; @@ -63,7 +63,7 @@ class DecoderRowBased : public Decoder { // The current row in the rect that we are updaing. int row_y_; - RectVector updated_rects_; + UpdatedRects updated_rects_; DISALLOW_COPY_AND_ASSIGN(DecoderRowBased); }; -- cgit v1.1