diff options
Diffstat (limited to 'WebCore/platform/graphics/MediaPlayer.h')
-rw-r--r-- | WebCore/platform/graphics/MediaPlayer.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/WebCore/platform/graphics/MediaPlayer.h b/WebCore/platform/graphics/MediaPlayer.h index 9abbb15..f825b57 100644 --- a/WebCore/platform/graphics/MediaPlayer.h +++ b/WebCore/platform/graphics/MediaPlayer.h @@ -54,6 +54,8 @@ class QTMovieVisualContext; namespace WebCore { +class GStreamerGWorld; + // Structure that will hold every native // types supported by the current media player. // We have to do that has multiple media players @@ -63,13 +65,15 @@ struct PlatformMedia { None, QTMovieType, QTMovieGWorldType, - QTMovieVisualContextType + QTMovieVisualContextType, + GStreamerGWorldType, } type; union { QTMovie* qtMovie; QTMovieGWorld* qtMovieGWorld; QTMovieVisualContext* qtMovieVisualContext; + GStreamerGWorld* gstreamerGWorld; } media; }; |