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

Unified Diff: media/filters/gpu_video_decoder.h

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/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_;

Powered by Google App Engine
This is Rietveld 408576698