- 8a411c4 Disallow set_allow_wgc_capturer_fallback call on Win10. by Sunggook Chue · 3 years ago
- 347f9b0 getDisplayMedia shows black window on Youtube PiP in Windows. by Sunggook Chue · 3 years ago
- 25b0dee Reland "Begin implementing WGC CaptureFrame" by Austin Orion · 4 years, 6 months ago
- 61709a3 Revert "Begin implementing WGC CaptureFrame" by Mirko Bonadei · 4 years, 6 months ago
- e820cef Begin implementing WGC CaptureFrame by Austin Orion · 4 years, 6 months ago
- 1ad8944 Implement Source enumeration and selection for WGC capturer by Austin Orion · 4 years, 8 months ago
- 61c2d99 Add skeleton of new capturer that uses Windows.Graphics.Capture API by Austin Orion · 4 years, 8 months ago
- 1256d9b Avoid capturing system UI over selected window by Bryan Ferguson · 5 years ago
- 0174ffe Can list UWP applications by Julien Isorce · 5 years ago
- 317a1f0 Use std::make_unique instead of absl::make_unique. by Mirko Bonadei · 6 years ago
- e8ef87b Include menus & dialogs in frames captured by WindowCapturerWin by Bryan Ferguson · 6 years ago
- f89110d Use PW_RENDERFULLCONTENT to capture occluded windows on Win8.1 and Win10 by Julien Isorce · 6 years ago
- 71809c6 WindowCapturerWin: properly check return value of GetClassName by Julien Isorce · 6 years ago
- 673f7e5 Do not assume /DUNICODE and /D_UNICODE. by Mirko Bonadei · 6 years ago
- 831bd96 Remove unnecessary memset to DesktopFrame by Julien Isorce · 6 years ago
- b46235c desktopCapture: skip non-responsive windows in the picker by braveyao · 6 years ago
- 10542f2 (4) Rename files to snake_case: update BUILD.gn, include paths, header guards, and DEPS entries by Steve Anton · 6 years ago
- 665174f Reformat the WebRTC code base by Yves Gerey · 7 years ago
- d7b9131 Move socklen_t definition for windows to win32.h. by Niels Möller · 7 years ago
- c6416fb [desktopCapture] add some logs into trace event by braveyao · 7 years ago
- 8944f6a [desktopCaptuer Win] exclude windows not on current virtual desktop by braveyao · 7 years ago
- 675513b Stop using LOG macros in favor of RTC_ prefixed macros. by Mirko Bonadei · 7 years ago
- 92ea95e Fixing WebRTC after moving from src/webrtc to src/ by Mirko Bonadei · 8 years ago
- bb54720 Moving src/webrtc into src/. by Mirko Bonadei · 8 years ago[Renamed from webrtc/modules/desktop_capture/window_capturer_win.cc]
- 7fdf857 Attach top-left to DesktopFrames generated by DesktopCapturer implementations by Zijie He · 8 years ago
- 4fe6607 Use GetWindowDrawableRect() instead of GetCroppedWindowRect() in WindowCapturerWin by Zijie He · 8 years ago
- 1282711 Use WindowFinder in WindowCapturer to detect IsOccluded() by Zijie He · 8 years ago
- af5686a Implement scaling detection in WindowCapturerWin by Zijie He · 8 years ago
- b010a32 Implement WindowUnderPoint() for Mac OSX and Windows by Zijie He · 8 years ago
- c20978e Rename webrtc/base -> webrtc/rtc_base by Edward Lemur · 8 years ago
- dca1e09 Revert "Update includes for webrtc/{base => rtc_base} rename (1/3)" by Henrik Kjellander · 8 years ago
- c8fa692 Update includes for webrtc/{base => rtc_base} rename (1/3) by kjellander · 8 years ago
- d41af46 This change fixes a crash issue in WindowCapturerWin. The issue and fix are both by zijiehe · 8 years ago
- 368f5cf Replace use of system_wrappers/include/logging.h by base/logging.h. by nisse · 8 years ago
- 98903d2 Remove ScreenCapturer and WindowCapturer by zijiehe · 8 years ago
- fce4905 Implement and use new DesktopCapturer APIs in WebRTC by zijiehe · 8 years ago
- 54fd579 Add CreateWindowCapturer() and CreateScreenCapturer() in DesktopCapturer by zijiehe · 8 years ago
- 4d0ec05 Revert of Add CreateWindowCapturer() and CreateScreenCapturer() in DesktopCapturer (patchset #2 id:40001 of https://codereview.webrtc.org/2468753002/ ) by perkj · 8 years ago
- b763e39 Add CreateWindowCapturer() and CreateScreenCapturer() in DesktopCapturer by zijiehe · 8 years ago
- b68d655 Add DesktopCapturer GetSourceList SelectSource FocusOnSelectedSource functions by zijiehe · 8 years ago
- fcab7d6 Revert of Add DesktopCapturer GetSourceList SelectSource FocusOnSelectedSource functions (patchset #3 id:120001 of https://codereview.chromium.org/2452263003/ ) by zijiehe · 8 years ago
- 9cb0b3b Add DesktopCapturer GetSourceList SelectSource FocusOnSelectedSource functions by zijiehe · 8 years ago
- e183121 Enable clang style plugin in webrtc/modules/desktop_capture by sergeyu · 8 years ago
- bdb8df8 BringSelectedWindowToFront should bring the window to front instead of only focusing it by zijiehe · 8 years ago
- 91902cb Remove DesktopRegion parameter from DesktopCapturer::Capture. by zijiehe · 8 years ago
- 5d91028 Use std::unique_ptr<> to pass frame ownership in DesktopCapturer impls. by sergeyu · 9 years ago
- b4c7b83 Revert of Use std::unique_ptr<> to pass frame ownership in DesktopCapturer impls. (patchset #7 id:140001 of https://codereview.webrtc.org/1988783003/ ) by sergeyu · 9 years ago
- 4a627a8 Use std::unique_ptr<> to pass frame ownership in DesktopCapturer impls. by sergeyu · 9 years ago
- 4485ffb #include "webrtc/base/constructormagic.h" where appropriate by kwiberg · 9 years ago
- 2bb3afa Replace scoped_ptr with unique_ptr in webrtc/modules/desktop_capture/ by kwiberg · 9 years ago
- 77f3e0d Screen was flickering when the picker for desktop medias showed up in Windows platform. Keeping track of window size for each window so that BitBlt() instead of PrintWindow() will be called for windows with unchanged sizes. by gyzhou · 9 years ago
- c94bd9b If a desktop captured window switches on/off it full screen mode, the capture may be unexpectedly terminated. During the transition of full screen mode on/off, the window can be temporarily invisible. by gyzhou · 9 years ago
- 98f5351 system_wrappers: rename interface -> include by Henrik Kjellander · 9 years ago
- 371dc7e WebRtc Win Desktop capture: ignore Win8+ Modern Apps' windows. by gyzhou · 9 years ago
- 3c089d7 Add RTC_ prefix to contructormagic macros. by henrikg · 10 years ago
- d848d5e Enable cropping window capturing for Win7 when Aero is disabled. by Jiayang Liu · 10 years ago
- 14665ff Roll chromium_revision e144d30..6fdb142 (318658:318841) + remove OVERRIDE macro by kjellander@webrtc.org · 10 years ago
- 00b8f6b Use base/scoped_ptr.h; system_wrappers/interface/scoped_ptr.h is going away by kwiberg@webrtc.org · 10 years ago
- d91608d The 2x2 black frame on windows when the shared window is minimized caused an assert from vp8 and may lead to memroy corruption. by jiayl@webrtc.org · 11 years ago
- 8995996 Fix window capturing on Windows when the window is minimized. by jiayl@webrtc.org · 11 years ago
- 047abc9 Remove trailing null character from std::string by jiayl@webrtc.org · 11 years ago
- d402875 Set updated_rect for frames generated by WindowCapturer implementationsw by sergeyu@chromium.org · 11 years ago
- cc1ba15 Returns a NULL frame on all platforms if the captured window is closed. by jiayl@webrtc.org · 11 years ago
- c8ac17c Adjust the captured window rect when the window is maximized. by jiayl@webrtc.org · 11 years ago
- 886c94f Adds a method to WindowCapturer to bring a window to the front. by jiayl@webrtc.org · 11 years ago
- f0fc72f Call PrintWindow for the first time of capturing to capture the window frames correctly. by jiayl@webrtc.org · 11 years ago
- ad3035f Fix WindowCapturerWin to unselect bitmap before destroying DC. by sergeyu@chromium.org · 11 years ago
- 894e6fe9 Add DesktopCaptureOptions class. by sergeyu@chromium.org · 11 years ago
- becbefa Fix WindowCapturerWin to capture window decorations after window size changes. by sergeyu@chromium.org · 11 years ago
- 8d757ac Fix window capturer not to leak HDC. by sergeyu@chromium.org · 11 years ago
- 958cdf6 Fix window capturer to stop capturing when the target is minimized. by sergeyu@chromium.org · 11 years ago
- 6a5cc9d Fix crash in the window capturer on windows by sergeyu@chromium.org · 12 years ago
- 12dc1a3 Switch C++-style C headers with their C equivalents. by pbos@webrtc.org · 12 years ago
- a590b41 Use intptr_t to represent window IDs on all platforms. by sergeyu@chromium.org · 12 years ago
- b10ccbe Window capturer implementation for Windows. by sergeyu@chromium.org · 12 years ago