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

Unified Diff: media/gpu/ipc/client/gpu_video_decode_accelerator_host.cc

Issue 2892083002: Send enter / exit fullscreen signal to AVDA (Closed)
Patch Set: added constructor tests Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/gpu/ipc/client/gpu_video_decode_accelerator_host.cc
diff --git a/media/gpu/ipc/client/gpu_video_decode_accelerator_host.cc b/media/gpu/ipc/client/gpu_video_decode_accelerator_host.cc
index e24195f137352f359390bde605be94054b9e67f7..b65b8a6c94652516de0e014bcd48d91ab6677592 100644
--- a/media/gpu/ipc/client/gpu_video_decode_accelerator_host.cc
+++ b/media/gpu/ipc/client/gpu_video_decode_accelerator_host.cc
@@ -169,14 +169,13 @@ void GpuVideoDecodeAcceleratorHost::Reset() {
Send(new AcceleratedVideoDecoderMsg_Reset(decoder_route_id_));
}
-void GpuVideoDecodeAcceleratorHost::SetSurface(
- int32_t surface_id,
- const base::Optional<base::UnguessableToken>& routing_token) {
+void GpuVideoDecodeAcceleratorHost::SetOverlayInfo(
+ const OverlayInfo& overlay_info) {
DCHECK(CalledOnValidThread());
if (!channel_)
return;
- Send(new AcceleratedVideoDecoderMsg_SetSurface(decoder_route_id_, surface_id,
- routing_token));
+ Send(new AcceleratedVideoDecoderMsg_SetOverlayInfo(decoder_route_id_,
+ overlay_info));
}
void GpuVideoDecodeAcceleratorHost::Destroy() {

Powered by Google App Engine
This is Rietveld 408576698