| Index: media/filters/gpu_video_decoder.h
|
| diff --git a/media/filters/gpu_video_decoder.h b/media/filters/gpu_video_decoder.h
|
| index 604f6ad0be7d3921711bd321a8f573ff6c02bb74..634a46aa47210d4af5a60af99ef6c641fd56d9bf 100644
|
| --- a/media/filters/gpu_video_decoder.h
|
| +++ b/media/filters/gpu_video_decoder.h
|
| @@ -155,17 +155,13 @@ class MEDIA_EXPORT GpuVideoDecoder
|
|
|
| // Provided to the |request_overlay_info_cb_| callback given during
|
| // construction. Sets or changes the output surface.
|
| - void OnOverlayInfoAvailable(
|
| - int surface_id,
|
| - const base::Optional<base::UnguessableToken>& routing_token);
|
| + void OnOverlayInfoAvailable(const OverlayInfo& overlay_info);
|
|
|
| // If the VDA supports external surfaces, we must wait for the surface before
|
| // completing initialization. This will be called by OnSurfaceAvailable() once
|
| // the surface is known or immediately by Initialize() if external surfaces
|
| // are unsupported.
|
| - void CompleteInitialization(
|
| - int surface_id,
|
| - const base::Optional<base::UnguessableToken>& token);
|
| + void CompleteInitialization(const OverlayInfo& overlay_info);
|
|
|
| bool needs_bitstream_conversion_;
|
|
|
|
|