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 <assert.h> | 11 #include <assert.h> |
12 | 12 |
13 #include <memory> | 13 #include <memory> |
14 | 14 |
15 #include "webrtc/base/checks.h" | 15 #include "webrtc/base/checks.h" |
16 #include "webrtc/base/constructormagic.h" | 16 #include "webrtc/base/constructormagic.h" |
| 17 #include "webrtc/base/logging.h" |
17 #include "webrtc/base/win32.h" | 18 #include "webrtc/base/win32.h" |
18 #include "webrtc/modules/desktop_capture/desktop_capturer.h" | 19 #include "webrtc/modules/desktop_capture/desktop_capturer.h" |
19 #include "webrtc/modules/desktop_capture/desktop_frame_win.h" | 20 #include "webrtc/modules/desktop_capture/desktop_frame_win.h" |
20 #include "webrtc/modules/desktop_capture/win/window_capture_utils.h" | 21 #include "webrtc/modules/desktop_capture/win/window_capture_utils.h" |
21 #include "webrtc/system_wrappers/include/logging.h" | |
22 | 22 |
23 namespace webrtc { | 23 namespace webrtc { |
24 | 24 |
25 namespace { | 25 namespace { |
26 | 26 |
27 BOOL CALLBACK WindowsEnumerationHandler(HWND hwnd, LPARAM param) { | 27 BOOL CALLBACK WindowsEnumerationHandler(HWND hwnd, LPARAM param) { |
28 DesktopCapturer::SourceList* list = | 28 DesktopCapturer::SourceList* list = |
29 reinterpret_cast<DesktopCapturer::SourceList*>(param); | 29 reinterpret_cast<DesktopCapturer::SourceList*>(param); |
30 | 30 |
31 // Skip windows that are invisible, minimized, have no title, or are owned, | 31 // Skip windows that are invisible, minimized, have no title, or are owned, |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 | 262 |
263 } // namespace | 263 } // namespace |
264 | 264 |
265 // static | 265 // static |
266 std::unique_ptr<DesktopCapturer> DesktopCapturer::CreateRawWindowCapturer( | 266 std::unique_ptr<DesktopCapturer> DesktopCapturer::CreateRawWindowCapturer( |
267 const DesktopCaptureOptions& options) { | 267 const DesktopCaptureOptions& options) { |
268 return std::unique_ptr<DesktopCapturer>(new WindowCapturerWin()); | 268 return std::unique_ptr<DesktopCapturer>(new WindowCapturerWin()); |
269 } | 269 } |
270 | 270 |
271 } // namespace webrtc | 271 } // namespace webrtc |
OLD | NEW |