| OLD | NEW |
| 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 |
| 11 #include "webrtc/modules/desktop_capture/win/screen_capturer_win_directx.h" | 11 #include "webrtc/modules/desktop_capture/win/screen_capturer_win_directx.h" |
| 12 | 12 |
| 13 #include <string> | 13 #include <string> |
| 14 #include <utility> | 14 #include <utility> |
| 15 | 15 |
| 16 #include "webrtc/base/checks.h" | |
| 17 #include "webrtc/base/logging.h" | |
| 18 #include "webrtc/base/ptr_util.h" | |
| 19 #include "webrtc/base/timeutils.h" | |
| 20 #include "webrtc/modules/desktop_capture/desktop_frame.h" | 16 #include "webrtc/modules/desktop_capture/desktop_frame.h" |
| 17 #include "webrtc/rtc_base/checks.h" |
| 18 #include "webrtc/rtc_base/logging.h" |
| 19 #include "webrtc/rtc_base/ptr_util.h" |
| 20 #include "webrtc/rtc_base/timeutils.h" |
| 21 | 21 |
| 22 namespace webrtc { | 22 namespace webrtc { |
| 23 | 23 |
| 24 using Microsoft::WRL::ComPtr; | 24 using Microsoft::WRL::ComPtr; |
| 25 | 25 |
| 26 // static | 26 // static |
| 27 bool ScreenCapturerWinDirectx::IsSupported() { | 27 bool ScreenCapturerWinDirectx::IsSupported() { |
| 28 // Forwards IsSupported() function call to DxgiDuplicatorController. | 28 // Forwards IsSupported() function call to DxgiDuplicatorController. |
| 29 return DxgiDuplicatorController::Instance()->IsSupported(); | 29 return DxgiDuplicatorController::Instance()->IsSupported(); |
| 30 } | 30 } |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 129 |
| 130 int screen_count = controller_->ScreenCount(); | 130 int screen_count = controller_->ScreenCount(); |
| 131 if (id >= 0 && id < screen_count) { | 131 if (id >= 0 && id < screen_count) { |
| 132 current_screen_id_ = id; | 132 current_screen_id_ = id; |
| 133 return true; | 133 return true; |
| 134 } | 134 } |
| 135 return false; | 135 return false; |
| 136 } | 136 } |
| 137 | 137 |
| 138 } // namespace webrtc | 138 } // namespace webrtc |
| OLD | NEW |