Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: webrtc/modules/desktop_capture/desktop_region.h

Issue 1899173002: Add defaulted move constructors for some types that just got copy constructors (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/codecs/audio_encoder.cc ('k') | webrtc/modules/desktop_capture/desktop_region.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698