| Index: media/filters/gpu_video_decoder.h
|
| diff --git a/media/filters/gpu_video_decoder.h b/media/filters/gpu_video_decoder.h
|
| index 018e925562bbdcb4a1f04e1b1ae0a1ffaac5f015..111d33981d6858615e414213b3d85e7ddf3ff397 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_;
|
|
|
|
|