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

Side by Side Diff: remoting/base/types.h

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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef REMOTING_BASE_TYPES_H_
6 #define REMOTING_BASE_TYPES_H_
7
8 #include <set>
9
10 #include "ui/gfx/rect.h"
11
12 namespace remoting {
13
14 // The collection of 'invalid' screen rectangles.
15 // This is used to keep track of regions of the screen that require
16 // updating.
17 typedef std::set<gfx::Rect> InvalidRects;
18
19 } // namespace remoting
20
21 #endif // REMOTING_BASE_TYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698