summaryrefslogtreecommitdiff
path: root/chromium/media/gpu/android/direct_shared_image_video_provider.cc
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2022-02-02 12:21:57 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2022-02-12 08:13:00 +0000
commit606d85f2a5386472314d39923da28c70c60dc8e7 (patch)
treea8f4d7bf997f349f45605e6058259fba0630e4d7 /chromium/media/gpu/android/direct_shared_image_video_provider.cc
parent5786336dda477d04fb98483dca1a5426eebde2d7 (diff)
downloadqtwebengine-chromium-606d85f2a5386472314d39923da28c70c60dc8e7.tar.gz
BASELINE: Update Chromium to 96.0.4664.181
Change-Id: I762cd1da89d73aa6313b4a753fe126c34833f046 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/media/gpu/android/direct_shared_image_video_provider.cc')
-rw-r--r--chromium/media/gpu/android/direct_shared_image_video_provider.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/media/gpu/android/direct_shared_image_video_provider.cc b/chromium/media/gpu/android/direct_shared_image_video_provider.cc
index 8b77ef06e37..790089a7723 100644
--- a/chromium/media/gpu/android/direct_shared_image_video_provider.cc
+++ b/chromium/media/gpu/android/direct_shared_image_video_provider.cc
@@ -215,10 +215,10 @@ bool GpuSharedImageVideoFactory::CreateImageInternal(
// colorspace and wire it here.
// TODO(vikassoni): This shared image need to be thread safe eventually for
// webview to work with shared images.
- auto shared_image = std::make_unique<gpu::SharedImageVideo>(
+ auto shared_image = gpu::SharedImageVideo::Create(
mailbox, coded_size, gfx::ColorSpace::CreateSRGB(),
kTopLeft_GrSurfaceOrigin, kPremul_SkAlphaType, std::move(image),
- std::move(shared_context), /*is_thread_safe=*/true, std::move(drdc_lock));
+ std::move(shared_context), std::move(drdc_lock));
// Register it with shared image mailbox as well as legacy mailbox. This
// keeps |shared_image| around until its destruction cb is called.