| Index: content/browser/webrtc/webrtc_capture_from_element_browsertest.cc
|
| diff --git a/content/browser/webrtc/webrtc_capture_from_element_browsertest.cc b/content/browser/webrtc/webrtc_capture_from_element_browsertest.cc
|
| index 0819498a60b045de0da8faa555dce2158b865052..7ea76acc7755f4d7b56392e62adda4ad2fb541df 100644
|
| --- a/content/browser/webrtc/webrtc_capture_from_element_browsertest.cc
|
| +++ b/content/browser/webrtc/webrtc_capture_from_element_browsertest.cc
|
| @@ -78,8 +78,16 @@ IN_PROC_BROWSER_TEST_F(WebRtcCaptureFromElementBrowserTest,
|
| kCanvasCaptureColorTestHtmlFile);
|
| }
|
|
|
| +#if defined(OS_ANDROID)
|
| +// Remote mojo renderer does not send audio/video frames back to the renderer
|
| +// process and hence does not support capture: https://crbug.com/641559.
|
| +#define MAYBE_VerifyCanvasWebGLCaptureColor \
|
| + DISABLED_VerifyCanvasWebGLCaptureColor
|
| +#else
|
| +#define MAYBE_VerifyCanvasWebGLCaptureColor VerifyCanvasWebGLCaptureColor
|
| +#endif
|
| IN_PROC_BROWSER_TEST_F(WebRtcCaptureFromElementBrowserTest,
|
| - VerifyCanvasWebGLCaptureColor) {
|
| + MAYBE_VerifyCanvasWebGLCaptureColor) {
|
| #if !defined(OS_MACOSX)
|
| // TODO(crbug.com/706009): Make this test pass on mac. Behavior is not buggy
|
| // (verified manually) on mac, but for some reason this test fails on the mac
|
|
|