From 67ca66afc161bebff7e5b73b309a1da019f66540 Mon Sep 17 00:00:00 2001 From: David Sanders Date: Wed, 23 Jul 2025 22:05:47 -0700 Subject: [PATCH] 6769214: [ios blink] Set IOSurface shared memory region on all GMB handles Refs https://chromium-review.googlesource.com/c/chromium/src/+/6769214 --- shell/browser/osr/osr_video_consumer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/browser/osr/osr_video_consumer.cc b/shell/browser/osr/osr_video_consumer.cc index f1307bb62f..00f8070107 100644 --- a/shell/browser/osr/osr_video_consumer.cc +++ b/shell/browser/osr/osr_video_consumer.cc @@ -107,7 +107,7 @@ void OffScreenVideoConsumer::OnFrameCaptured( reinterpret_cast(gmb_handle.dxgi_handle().buffer_handle()); #elif BUILDFLAG(IS_APPLE) texture.shared_texture_handle = - reinterpret_cast(gmb_handle.io_surface.get()); + reinterpret_cast(gmb_handle.io_surface().get()); #elif BUILDFLAG(IS_LINUX) const auto& native_pixmap = gmb_handle.native_pixmap_handle(); texture.modifier = native_pixmap.modifier;