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 |
11 #include "webrtc/modules/desktop_capture/desktop_region.h" | 11 #include "webrtc/modules/desktop_capture/desktop_region.h" |
12 | 12 |
13 #include <assert.h> | 13 #include <assert.h> |
14 | 14 |
15 #include <algorithm> | 15 #include <algorithm> |
16 | 16 |
17 namespace webrtc { | 17 namespace webrtc { |
18 | 18 |
19 DesktopRegion::RowSpan::RowSpan(int32_t left, int32_t right) | 19 DesktopRegion::RowSpan::RowSpan(int32_t left, int32_t right) |
20 : left(left), right(right) { | 20 : left(left), right(right) { |
21 } | 21 } |
22 | 22 |
23 DesktopRegion::Row::Row(const Row&) = default; | 23 DesktopRegion::Row::Row(const Row&) = default; |
| 24 DesktopRegion::Row::Row(Row&&) = default; |
24 | 25 |
25 DesktopRegion::Row::Row(int32_t top, int32_t bottom) | 26 DesktopRegion::Row::Row(int32_t top, int32_t bottom) |
26 : top(top), bottom(bottom) { | 27 : top(top), bottom(bottom) { |
27 } | 28 } |
28 | 29 |
29 DesktopRegion::Row::~Row() {} | 30 DesktopRegion::Row::~Row() {} |
30 | 31 |
31 DesktopRegion::DesktopRegion() {} | 32 DesktopRegion::DesktopRegion() {} |
32 | 33 |
33 DesktopRegion::DesktopRegion(const DesktopRect& rect) { | 34 DesktopRegion::DesktopRegion(const DesktopRect& rect) { |
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
562 previous = bottom_row; | 563 previous = bottom_row; |
563 ++bottom_row; | 564 ++bottom_row; |
564 } while (bottom_row != region_.rows_.end() && | 565 } while (bottom_row != region_.rows_.end() && |
565 previous->second->bottom == bottom_row->second->top && | 566 previous->second->bottom == bottom_row->second->top && |
566 IsSpanInRow(*bottom_row->second, *row_span_)); | 567 IsSpanInRow(*bottom_row->second, *row_span_)); |
567 rect_ = DesktopRect::MakeLTRB(row_span_->left, row_->second->top, | 568 rect_ = DesktopRect::MakeLTRB(row_span_->left, row_->second->top, |
568 row_span_->right, bottom); | 569 row_span_->right, bottom); |
569 } | 570 } |
570 | 571 |
571 } // namespace webrtc | 572 } // namespace webrtc |
OLD | NEW |