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