OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 30 matching lines...) Expand all Loading... |
41 int32_t left; | 41 int32_t left; |
42 int32_t right; | 42 int32_t right; |
43 }; | 43 }; |
44 | 44 |
45 typedef std::vector<RowSpan> RowSpanSet; | 45 typedef std::vector<RowSpan> RowSpanSet; |
46 | 46 |
47 // Row represents a single row of a region. A row is set of rectangles that | 47 // Row represents a single row of a region. A row is set of rectangles that |
48 // have the same vertical position. | 48 // have the same vertical position. |
49 struct Row { | 49 struct Row { |
50 Row(const Row&); | 50 Row(const Row&); |
| 51 Row(Row&&); |
51 Row(int32_t top, int32_t bottom); | 52 Row(int32_t top, int32_t bottom); |
52 ~Row(); | 53 ~Row(); |
53 | 54 |
54 int32_t top; | 55 int32_t top; |
55 int32_t bottom; | 56 int32_t bottom; |
56 | 57 |
57 RowSpanSet spans; | 58 RowSpanSet spans; |
58 }; | 59 }; |
59 | 60 |
60 // Type used to store list of rows in the region. The bottom position of row | 61 // Type used to store list of rows in the region. The bottom position of row |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 // merged row. | 160 // merged row. |
160 void MergeWithPrecedingRow(Rows::iterator row); | 161 void MergeWithPrecedingRow(Rows::iterator row); |
161 | 162 |
162 Rows rows_; | 163 Rows rows_; |
163 }; | 164 }; |
164 | 165 |
165 } // namespace webrtc | 166 } // namespace webrtc |
166 | 167 |
167 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_DESKTOP_REGION_H_ | 168 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_DESKTOP_REGION_H_ |
168 | 169 |
OLD | NEW |