Initialize all data members in HTTPResponseInfo's new ctor and remove the related...
[chromium-blink-merge.git] / remoting / base / types.h
blob321bb0a79f73fbed2128b60e2d620aa1e6ddc261
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.
5 #ifndef REMOTING_BASE_TYPES_H_
6 #define REMOTING_BASE_TYPES_H_
8 #include <set>
10 #include "gfx/rect.h"
12 namespace remoting {
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;
19 } // namespace remoting
21 #endif // REMOTING_BASE_TYPES_H_