Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: remoting/base/capture_data.cc

Issue 7491070: Switch over to using SkRegions to calculate dirty areas. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: clean up comments Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/base/capture_data.h" 5 #include "remoting/base/capture_data.h"
6 6
7 namespace remoting { 7 namespace remoting {
8 8
9 DataPlanes::DataPlanes() { 9 DataPlanes::DataPlanes() {
10 for (int i = 0; i < kPlaneCount; ++i) { 10 for (int i = 0; i < kPlaneCount; ++i) {
11 data[i] = NULL; 11 data[i] = NULL;
12 strides[i] = 0; 12 strides[i] = 0;
13 } 13 }
14 } 14 }
15 15
16 CaptureData::CaptureData(const DataPlanes &data_planes, 16 CaptureData::CaptureData(const DataPlanes &data_planes,
17 const gfx::Size& size, 17 const gfx::Size& size,
18 media::VideoFrame::Format format) 18 media::VideoFrame::Format format)
19 : data_planes_(data_planes), 19 : data_planes_(data_planes),
20 dirty_rects_(), 20 dirty_region_(),
21 size_(size), 21 size_(size),
22 pixel_format_(format), 22 pixel_format_(format),
23 capture_time_ms_(0), 23 capture_time_ms_(0),
24 client_sequence_number_(0) { 24 client_sequence_number_(0) {
25 } 25 }
26 26
27 CaptureData::~CaptureData() {} 27 CaptureData::~CaptureData() {}
28 28
29 } // namespace remoting 29 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698