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

Side by Side Diff: webrtc/modules/desktop_capture/win/dxgi_adapter_duplicator.cc

Issue 2436503004: Enable clang style plugin in webrtc/modules/desktop_capture (Closed)
Patch Set: . Created 4 years, 1 month 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) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 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 13 matching lines...) Expand all
24 24
25 namespace { 25 namespace {
26 26
27 bool IsValidRect(const RECT& rect) { 27 bool IsValidRect(const RECT& rect) {
28 return rect.left >= 0 && rect.top >= 0 && rect.right > rect.left && 28 return rect.left >= 0 && rect.top >= 0 && rect.right > rect.left &&
29 rect.bottom > rect.top; 29 rect.bottom > rect.top;
30 } 30 }
31 31
32 } // namespace 32 } // namespace
33 33
34 DxgiAdapterDuplicator::Context::Context() = default;
35 DxgiAdapterDuplicator::Context::Context(const Context& other) = default;
36 DxgiAdapterDuplicator::Context::~Context() = default;
37
34 DxgiAdapterDuplicator::DxgiAdapterDuplicator(const D3dDevice& device) 38 DxgiAdapterDuplicator::DxgiAdapterDuplicator(const D3dDevice& device)
35 : device_(device) {} 39 : device_(device) {}
36
37 DxgiAdapterDuplicator::DxgiAdapterDuplicator(DxgiAdapterDuplicator&&) = default; 40 DxgiAdapterDuplicator::DxgiAdapterDuplicator(DxgiAdapterDuplicator&&) = default;
41 DxgiAdapterDuplicator::~DxgiAdapterDuplicator() = default;
38 42
39 bool DxgiAdapterDuplicator::Initialize() { 43 bool DxgiAdapterDuplicator::Initialize() {
40 if (DoInitialize()) { 44 if (DoInitialize()) {
41 return true; 45 return true;
42 } 46 }
43 duplicators_.clear(); 47 duplicators_.clear();
44 return false; 48 return false;
45 } 49 }
46 50
47 bool DxgiAdapterDuplicator::DoInitialize() { 51 bool DxgiAdapterDuplicator::DoInitialize() {
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 return duplicators_[monitor_id].Duplicate(&context->contexts[monitor_id], 138 return duplicators_[monitor_id].Duplicate(&context->contexts[monitor_id],
135 DesktopVector(), target); 139 DesktopVector(), target);
136 } 140 }
137 141
138 DesktopRect DxgiAdapterDuplicator::ScreenRect(int id) const { 142 DesktopRect DxgiAdapterDuplicator::ScreenRect(int id) const {
139 RTC_DCHECK(id >= 0 && id < static_cast<int>(duplicators_.size())); 143 RTC_DCHECK(id >= 0 && id < static_cast<int>(duplicators_.size()));
140 return duplicators_[id].desktop_rect(); 144 return duplicators_[id].desktop_rect();
141 } 145 }
142 146
143 } // namespace webrtc 147 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698