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

Issue 2625553003: DesktopCaptureDevice is available when webrtc is enabled. (Closed)

Created:
3 years, 11 months ago by byungchul
Modified:
3 years, 11 months ago
CC:
chromium-reviews, jam, darin-cc_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

DesktopCaptureDevice is available when webrtc is enabled. ENABLED_SCREEN_CAPTURE is not flag to enable DesktopCaptureDevice. It enables DesktopCaptureDeviceAura (if use_aura=1). Use BUILDFLAG(ENABLE_WEBRTC) instead of ENABLED_SCREEN_CAPTURE to use DesktopCaptureDevice in VidepCaptureManager. BUG=internal b/34176576 Review-Url: https://codereview.chromium.org/2625553003 Cr-Commit-Position: refs/heads/master@{#442957} Committed: https://chromium.googlesource.com/chromium/src/+/c164a25463bbe2aee8e6dd4672b77afe16559ba7

Patch Set 1 #

Patch Set 2 : Guard one more place with ENABLE_SCREEN_CAPTURE #

Total comments: 2

Patch Set 3 : Remove unnecessary defines #

Total comments: 1

Patch Set 4 : Use BUILDFLAG(ENABLE_WEBRTC) to use DesktopCaptureDevice #

Total comments: 7

Patch Set 5 : DesktopCaptureDevice is available when enable_webrtc=1 and enable_screen_capture=1 #

Patch Set 6 : DesktopCaptureDevice is available when webrtc is enabled. #

Total comments: 2

Patch Set 7 : Fixed the comment in BUILD.gn #

Unified diffs Side-by-side diffs Delta from patch set Stats (+22 lines, -15 lines) Patch
M content/browser/BUILD.gn View 1 2 3 4 5 6 2 chunks +9 lines, -9 lines 0 comments Download
M content/browser/renderer_host/media/video_capture_manager.cc View 1 2 3 4 5 3 chunks +13 lines, -6 lines 0 comments Download

Messages

Total messages: 40 (19 generated)
byungchul
3 years, 11 months ago (2017-01-10 17:15:06 UTC) #10
chfremer
lgtm
3 years, 11 months ago (2017-01-10 17:27:21 UTC) #13
boliu
I'll stamp after a chromecast owner approves https://codereview.chromium.org/2625553003/diff/20001/content/browser/renderer_host/media/video_capture_manager.cc File content/browser/renderer_host/media/video_capture_manager.cc (right): https://codereview.chromium.org/2625553003/diff/20001/content/browser/renderer_host/media/video_capture_manager.cc#newcode665 content/browser/renderer_host/media/video_capture_manager.cc:665: #if defined(OS_LINUX) ...
3 years, 11 months ago (2017-01-10 17:31:51 UTC) #14
byungchul
https://codereview.chromium.org/2625553003/diff/20001/content/browser/renderer_host/media/video_capture_manager.cc File content/browser/renderer_host/media/video_capture_manager.cc (right): https://codereview.chromium.org/2625553003/diff/20001/content/browser/renderer_host/media/video_capture_manager.cc#newcode665 content/browser/renderer_host/media/video_capture_manager.cc:665: #if defined(OS_LINUX) || defined(OS_MACOSX) || defined(OS_WIN) On 2017/01/10 17:31:51, ...
3 years, 11 months ago (2017-01-10 17:40:38 UTC) #16
halliwell
https://codereview.chromium.org/2625553003/diff/40001/content/browser/BUILD.gn File content/browser/BUILD.gn (right): https://codereview.chromium.org/2625553003/diff/40001/content/browser/BUILD.gn#newcode1514 content/browser/BUILD.gn:1514: if ((is_linux && !(is_chromecast && is_cast_audio_only)) || is_mac || ...
3 years, 11 months ago (2017-01-10 17:45:44 UTC) #17
byungchul
On 2017/01/10 17:45:44, halliwell wrote: > https://codereview.chromium.org/2625553003/diff/40001/content/browser/BUILD.gn > File content/browser/BUILD.gn (right): > > https://codereview.chromium.org/2625553003/diff/40001/content/browser/BUILD.gn#newcode1514 > ...
3 years, 11 months ago (2017-01-10 17:52:25 UTC) #18
halliwell
On 2017/01/10 17:52:25, byungchul wrote: > On 2017/01/10 17:45:44, halliwell wrote: > > https://codereview.chromium.org/2625553003/diff/40001/content/browser/BUILD.gn > ...
3 years, 11 months ago (2017-01-10 18:04:20 UTC) #19
byungchul
On 2017/01/10 18:04:20, halliwell wrote: > On 2017/01/10 17:52:25, byungchul wrote: > > On 2017/01/10 ...
3 years, 11 months ago (2017-01-10 18:14:55 UTC) #20
byungchul
On 2017/01/10 18:14:55, byungchul wrote: > On 2017/01/10 18:04:20, halliwell wrote: > > On 2017/01/10 ...
3 years, 11 months ago (2017-01-10 19:53:55 UTC) #23
chfremer
Hmm, I feel this is somewhat going in the wrong direction. I felt okay about ...
3 years, 11 months ago (2017-01-10 22:08:09 UTC) #25
byungchul
On 2017/01/10 22:08:09, chfremer wrote: > Hmm, I feel this is somewhat going in the ...
3 years, 11 months ago (2017-01-10 22:15:25 UTC) #26
chfremer
On 2017/01/10 22:15:25, byungchul wrote: > On 2017/01/10 22:08:09, chfremer wrote: > > Hmm, I ...
3 years, 11 months ago (2017-01-10 22:36:31 UTC) #27
byungchul
On 2017/01/10 22:36:31, chfremer wrote: > On 2017/01/10 22:15:25, byungchul wrote: > > On 2017/01/10 ...
3 years, 11 months ago (2017-01-10 22:52:05 UTC) #28
miu
Hi all. This change may have been necessitated by my recent change (https://codereview.chromium.org/2605973002/). There are ...
3 years, 11 months ago (2017-01-10 23:22:01 UTC) #29
miu
https://codereview.chromium.org/2625553003/diff/60001/content/browser/renderer_host/media/video_capture_manager.cc File content/browser/renderer_host/media/video_capture_manager.cc (right): https://codereview.chromium.org/2625553003/diff/60001/content/browser/renderer_host/media/video_capture_manager.cc#newcode43 content/browser/renderer_host/media/video_capture_manager.cc:43: #if BUILDFLAG(ENABLE_WEBRTC) && !defined(OS_ANDROID) Both (per prior e-mail on ...
3 years, 11 months ago (2017-01-10 23:27:50 UTC) #30
byungchul
PTAL. https://codereview.chromium.org/2625553003/diff/60001/content/browser/renderer_host/media/video_capture_manager.cc File content/browser/renderer_host/media/video_capture_manager.cc (right): https://codereview.chromium.org/2625553003/diff/60001/content/browser/renderer_host/media/video_capture_manager.cc#newcode43 content/browser/renderer_host/media/video_capture_manager.cc:43: #if BUILDFLAG(ENABLE_WEBRTC) && !defined(OS_ANDROID) On 2017/01/10 23:27:49, miu ...
3 years, 11 months ago (2017-01-10 23:48:33 UTC) #31
miu
PS6 LGTM % a minor thing: https://codereview.chromium.org/2625553003/diff/100001/content/browser/BUILD.gn File content/browser/BUILD.gn (right): https://codereview.chromium.org/2625553003/diff/100001/content/browser/BUILD.gn#newcode1505 content/browser/BUILD.gn:1505: # Desktop screen ...
3 years, 11 months ago (2017-01-10 23:58:15 UTC) #32
boliu
content/browser/BUILD.gn lgtm
3 years, 11 months ago (2017-01-11 01:02:02 UTC) #33
byungchul
https://codereview.chromium.org/2625553003/diff/100001/content/browser/BUILD.gn File content/browser/BUILD.gn (right): https://codereview.chromium.org/2625553003/diff/100001/content/browser/BUILD.gn#newcode1505 content/browser/BUILD.gn:1505: # Desktop screen capture implementations that are not dependent ...
3 years, 11 months ago (2017-01-11 17:13:04 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2625553003/120001
3 years, 11 months ago (2017-01-11 17:13:50 UTC) #37
commit-bot: I haz the power
3 years, 11 months ago (2017-01-11 18:19:02 UTC) #40
Message was sent while issue was closed.
Committed patchset #7 (id:120001) as
https://chromium.googlesource.com/chromium/src/+/c164a25463bbe2aee8e6dd4672b7...

Powered by Google App Engine
This is Rietveld 408576698