OLD | NEW |
| (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_ | |
OLD | NEW |