Title: [201119] trunk/Source/WebCore
Revision
201119
Author
eric.carl...@apple.com
Date
2016-05-18 17:20:26 -0700 (Wed, 18 May 2016)

Log Message

[iOS] Fullscreen video playback broken in WK1 apps
https://bugs.webkit.org/show_bug.cgi?id=157847
<rdar://problem/25879521>

Reviewed by Jer Noble.

* platform/cocoa/WebVideoFullscreenModelVideoElement.h:
(WebCore::WebVideoFullscreenModelVideoElement::playbackSessionModel): New, model accessor.
* platform/cocoa/WebVideoFullscreenModelVideoElement.mm:
(WebVideoFullscreenModelVideoElement::setWebVideoFullscreenInterface): Set model's playback interface.
(WebVideoFullscreenModelVideoElement::setVideoElement): Set model's video element.

* platform/ios/WebVideoFullscreenControllerAVKit.mm:
(WebVideoFullscreenControllerContext::didCleanupFullscreen): Clear m_sessionModel.
(WebVideoFullscreenControllerContext::setVideoDimensions): This is called from both the UI and
  Web threads, so dispatch to the UI thread when necessary.
(WebVideoFullscreenControllerContext::play): Call the model's playback session on the Web thread.
(WebVideoFullscreenControllerContext::pause): Ditto.
(WebVideoFullscreenControllerContext::togglePlayState): Ditto.
(WebVideoFullscreenControllerContext::beginScrubbing): Ditto.
(WebVideoFullscreenControllerContext::endScrubbing): Ditto.
(WebVideoFullscreenControllerContext::seekToTime): Ditto.
(WebVideoFullscreenControllerContext::fastSeek): Ditto.
(WebVideoFullscreenControllerContext::beginScanningForward): Ditto.
(WebVideoFullscreenControllerContext::beginScanningBackward): Ditto.
(WebVideoFullscreenControllerContext::endScanning): Ditto.
(WebVideoFullscreenControllerContext::selectAudioMediaOption): Ditto.
(WebVideoFullscreenControllerContext::selectLegibleMediaOption): Ditto.
(WebVideoFullscreenControllerContext::setUpFullscreen): Create and configure a session model.
(WebVideoFullscreenSessionModel::play): Pass call back to the controller.
(WebVideoFullscreenSessionModel::pause): Ditto.
(WebVideoFullscreenSessionModel::togglePlayState): Ditto.
(WebVideoFullscreenSessionModel::beginScrubbing): Ditto.
(WebVideoFullscreenSessionModel::endScrubbing): Ditto.
(WebVideoFullscreenSessionModel::seekToTime): Ditto.
(WebVideoFullscreenSessionModel::fastSeek): Ditto.
(WebVideoFullscreenSessionModel::beginScanningForward): Ditto.
(WebVideoFullscreenSessionModel::beginScanningBackward): Ditto.
(WebVideoFullscreenSessionModel::endScanning): Ditto.
(WebVideoFullscreenSessionModel::selectAudioMediaOption): Ditto.
(WebVideoFullscreenSessionModel::selectLegibleMediaOption): Ditto.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (201118 => 201119)


--- trunk/Source/WebCore/ChangeLog	2016-05-19 00:04:48 UTC (rev 201118)
+++ trunk/Source/WebCore/ChangeLog	2016-05-19 00:20:26 UTC (rev 201119)
@@ -1,3 +1,47 @@
+2016-05-18  Eric Carlson  <eric.carl...@apple.com>
+
+        [iOS] Fullscreen video playback broken in WK1 apps
+        https://bugs.webkit.org/show_bug.cgi?id=157847
+        <rdar://problem/25879521>
+
+        Reviewed by Jer Noble.
+
+        * platform/cocoa/WebVideoFullscreenModelVideoElement.h:
+        (WebCore::WebVideoFullscreenModelVideoElement::playbackSessionModel): New, model accessor.
+        * platform/cocoa/WebVideoFullscreenModelVideoElement.mm:
+        (WebVideoFullscreenModelVideoElement::setWebVideoFullscreenInterface): Set model's playback interface.
+        (WebVideoFullscreenModelVideoElement::setVideoElement): Set model's video element.
+
+        * platform/ios/WebVideoFullscreenControllerAVKit.mm:
+        (WebVideoFullscreenControllerContext::didCleanupFullscreen): Clear m_sessionModel.
+        (WebVideoFullscreenControllerContext::setVideoDimensions): This is called from both the UI and
+          Web threads, so dispatch to the UI thread when necessary.
+        (WebVideoFullscreenControllerContext::play): Call the model's playback session on the Web thread.
+        (WebVideoFullscreenControllerContext::pause): Ditto.
+        (WebVideoFullscreenControllerContext::togglePlayState): Ditto.
+        (WebVideoFullscreenControllerContext::beginScrubbing): Ditto.
+        (WebVideoFullscreenControllerContext::endScrubbing): Ditto.
+        (WebVideoFullscreenControllerContext::seekToTime): Ditto.
+        (WebVideoFullscreenControllerContext::fastSeek): Ditto.
+        (WebVideoFullscreenControllerContext::beginScanningForward): Ditto.
+        (WebVideoFullscreenControllerContext::beginScanningBackward): Ditto.
+        (WebVideoFullscreenControllerContext::endScanning): Ditto.
+        (WebVideoFullscreenControllerContext::selectAudioMediaOption): Ditto.
+        (WebVideoFullscreenControllerContext::selectLegibleMediaOption): Ditto.
+        (WebVideoFullscreenControllerContext::setUpFullscreen): Create and configure a session model.
+        (WebVideoFullscreenSessionModel::play): Pass call back to the controller.
+        (WebVideoFullscreenSessionModel::pause): Ditto.
+        (WebVideoFullscreenSessionModel::togglePlayState): Ditto.
+        (WebVideoFullscreenSessionModel::beginScrubbing): Ditto.
+        (WebVideoFullscreenSessionModel::endScrubbing): Ditto.
+        (WebVideoFullscreenSessionModel::seekToTime): Ditto.
+        (WebVideoFullscreenSessionModel::fastSeek): Ditto.
+        (WebVideoFullscreenSessionModel::beginScanningForward): Ditto.
+        (WebVideoFullscreenSessionModel::beginScanningBackward): Ditto.
+        (WebVideoFullscreenSessionModel::endScanning): Ditto.
+        (WebVideoFullscreenSessionModel::selectAudioMediaOption): Ditto.
+        (WebVideoFullscreenSessionModel::selectLegibleMediaOption): Ditto.
+
 2016-05-18  Zalan Bujtas  <za...@apple.com>
 
         Remove LayoutUnit::operator unsigned().

Modified: trunk/Source/WebCore/platform/cocoa/WebVideoFullscreenModelVideoElement.h (201118 => 201119)


--- trunk/Source/WebCore/platform/cocoa/WebVideoFullscreenModelVideoElement.h	2016-05-19 00:04:48 UTC (rev 201118)
+++ trunk/Source/WebCore/platform/cocoa/WebVideoFullscreenModelVideoElement.h	2016-05-19 00:20:26 UTC (rev 201119)
@@ -56,6 +56,7 @@
     WEBCORE_EXPORT void setVideoElement(HTMLVideoElement*);
     WEBCORE_EXPORT HTMLVideoElement* videoElement() const { return m_videoElement.get(); }
     WEBCORE_EXPORT void setVideoFullscreenLayer(PlatformLayer*);
+    WebPlaybackSessionModelMediaElement& playbackSessionModel() { return m_playbackSessionModel; }
     
     WEBCORE_EXPORT void handleEvent(WebCore::ScriptExecutionContext*, WebCore::Event*) override;
     void updateForEventName(const WTF::AtomicString&);

Modified: trunk/Source/WebCore/platform/cocoa/WebVideoFullscreenModelVideoElement.mm (201118 => 201119)


--- trunk/Source/WebCore/platform/cocoa/WebVideoFullscreenModelVideoElement.mm	2016-05-19 00:04:48 UTC (rev 201118)
+++ trunk/Source/WebCore/platform/cocoa/WebVideoFullscreenModelVideoElement.mm	2016-05-19 00:20:26 UTC (rev 201119)
@@ -67,6 +67,7 @@
         return;
 
     m_videoFullscreenInterface = interface;
+    m_playbackSessionModel->setWebPlaybackSessionInterface(interface);
 
     if (m_videoFullscreenInterface && m_videoElement)
         m_videoFullscreenInterface->setVideoDimensions(true, m_videoElement->videoWidth(), m_videoElement->videoHeight());
@@ -87,6 +88,7 @@
     m_isListening = false;
 
     m_videoElement = videoElement;
+    m_playbackSessionModel->setMediaElement(videoElement);
 
     if (!m_videoElement)
         return;

Modified: trunk/Source/WebCore/platform/ios/WebVideoFullscreenControllerAVKit.mm (201118 => 201119)


--- trunk/Source/WebCore/platform/ios/WebVideoFullscreenControllerAVKit.mm	2016-05-19 00:04:48 UTC (rev 201118)
+++ trunk/Source/WebCore/platform/ios/WebVideoFullscreenControllerAVKit.mm	2016-05-19 00:20:26 UTC (rev 201119)
@@ -88,6 +88,7 @@
 }
 
 class WebVideoFullscreenControllerContext;
+class WebVideoFullscreenSessionModel;
 
 @interface WebVideoFullscreenController (delegate)
 -(void)didFinishFullscreen:(WebVideoFullscreenControllerContext*)context;
@@ -104,13 +105,26 @@
     {
         return adoptRef(*new WebVideoFullscreenControllerContext);
     }
-    
+
     void setController(WebVideoFullscreenController* controller) { m_controller = controller; }
     void setUpFullscreen(HTMLVideoElement&, UIView *, HTMLMediaElementEnums::VideoFullscreenMode);
     void exitFullscreen();
     void requestHideAndExitFullscreen();
     void invalidate();
 
+    void play();
+    void pause();
+    void togglePlayState();
+    void beginScrubbing();
+    void endScrubbing();
+    void seekToTime(double);
+    void fastSeek(double time);
+    void beginScanningForward();
+    void beginScanningBackward();
+    void endScanning();
+    void selectAudioMediaOption(uint64_t);
+    void selectLegibleMediaOption(uint64_t);
+
 private:
     WebVideoFullscreenControllerContext() { }
 
@@ -120,7 +134,7 @@
     void didExitFullscreen() override;
     void didCleanupFullscreen() override;
     void fullscreenMayReturnToInline() override;
-    
+
     // WebVideoFullscreenInterface
     void resetMediaState() override;
     void setDuration(double) override;
@@ -147,8 +161,83 @@
     RefPtr<HTMLVideoElement> m_videoElement;
     RetainPtr<UIView> m_videoFullscreenView;
     RetainPtr<WebVideoFullscreenController> m_controller;
+    RefPtr<WebVideoFullscreenSessionModel> m_sessionModel;
 };
 
+
+class WebVideoFullscreenSessionModel final: public RefCounted<WebVideoFullscreenSessionModel>, public WebCore::WebPlaybackSessionModel  {
+public:
+    static Ref<WebVideoFullscreenSessionModel> create(WebVideoFullscreenControllerContext& controller)
+    {
+        return adoptRef(*new WebVideoFullscreenSessionModel(controller));
+    }
+    virtual ~WebVideoFullscreenSessionModel() { }
+
+    void invalidate() { m_controller = nullptr; }
+
+    void setDuration(double duration) { m_duration = duration; }
+    void setCurrentTime(double currentTime) { m_currentTime = currentTime; }
+    void setBufferedTime(double bufferedTime) { m_bufferedTime = bufferedTime; }
+    void setIsPlaying(bool isPlaying) { m_isPlaying = isPlaying; }
+    void setPlaybackRate(float playbackRate) { m_playbackRate = playbackRate; }
+    void setSeekableRanges(WebCore::TimeRanges& seekableRanges) { m_seekableRanges = seekableRanges; }
+    void setCanPlayFastReverse(bool canPlayFastReverse) { m_canPlayFastReverse = canPlayFastReverse; }
+    void setAudioMediaSelectionOptions(const Vector<WTF::String>& audioMediaSelectionOptions) { m_audioMediaSelectionOptions = audioMediaSelectionOptions; }
+    void setAudioMediaSelectedIndex(uint64_t audioMediaSelectedIndex) { m_audioMediaSelectedIndex = audioMediaSelectedIndex; }
+    void setLegibleMediaSelectionOptions(const Vector<WTF::String>& legibleMediaSelectionOptions) { m_legibleMediaSelectionOptions = legibleMediaSelectionOptions; }
+    void setLegibleMediaSelectedIndex(uint64_t legibleMediaSelectedIndex) { m_legibleMediaSelectedIndex = legibleMediaSelectedIndex; }
+    void setExternalPlaybackEnabled(bool externalPlaybackEnabled) { m_externalPlaybackEnabled = externalPlaybackEnabled; }
+    void setWirelessVideoPlaybackDisabled(bool wirelessVideoPlaybackDisabled) { m_wirelessVideoPlaybackDisabled = wirelessVideoPlaybackDisabled; }
+
+private:
+    WebVideoFullscreenSessionModel(WebVideoFullscreenControllerContext& controller)
+        : m_controller(&controller)
+    {
+    }
+
+    void play() final;
+    void pause() final;
+    void togglePlayState() final;
+    void beginScrubbing() final;
+    void endScrubbing() final;
+    void seekToTime(double) final;
+    void fastSeek(double time) final;
+    void beginScanningForward() final;
+    void beginScanningBackward() final;
+    void endScanning() final;
+    void selectAudioMediaOption(uint64_t) final;
+    void selectLegibleMediaOption(uint64_t) final;
+
+    double duration() const final { return m_duration; }
+    double currentTime() const final { return m_currentTime; }
+    double bufferedTime() const final { return m_bufferedTime; }
+    bool isPlaying() const final { return m_isPlaying; }
+    float playbackRate() const final { return m_playbackRate; }
+    Ref<WebCore::TimeRanges> seekableRanges() const final { return m_seekableRanges.copyRef(); }
+    bool canPlayFastReverse() const final { return m_canPlayFastReverse; }
+    Vector<WTF::String> audioMediaSelectionOptions() const final { return m_audioMediaSelectionOptions; }
+    uint64_t audioMediaSelectedIndex() const final { return m_audioMediaSelectedIndex; }
+    Vector<WTF::String> legibleMediaSelectionOptions() const final { return m_legibleMediaSelectionOptions; }
+    uint64_t legibleMediaSelectedIndex() const final { return m_legibleMediaSelectedIndex; }
+    bool externalPlaybackEnabled() const final { return m_externalPlaybackEnabled; }
+    bool wirelessVideoPlaybackDisabled() const final { return m_wirelessVideoPlaybackDisabled; }
+
+    WebVideoFullscreenControllerContext* m_controller;
+    double m_duration { 0 };
+    double m_currentTime { 0 };
+    double m_bufferedTime { 0 };
+    bool m_isPlaying { false };
+    float m_playbackRate { 0 };
+    Ref<WebCore::TimeRanges> m_seekableRanges { WebCore::TimeRanges::create() };
+    bool m_canPlayFastReverse { false };
+    Vector<WTF::String> m_audioMediaSelectionOptions;
+    uint64_t m_audioMediaSelectedIndex { 0 };
+    Vector<WTF::String> m_legibleMediaSelectionOptions;
+    uint64_t m_legibleMediaSelectedIndex { 0 };
+    bool m_externalPlaybackEnabled { false };
+    bool m_wirelessVideoPlaybackDisabled { false };
+};
+
 #pragma mark WebVideoFullscreenChangeObserver
 
 void WebVideoFullscreenControllerContext::didSetupFullscreen()
@@ -184,7 +273,9 @@
     m_interface->setWebVideoFullscreenChangeObserver(nullptr);
     m_interface = nullptr;
     m_videoFullscreenView = nil;
-    
+    m_sessionModel->invalidate();
+    m_sessionModel = nullptr;
+
     RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
     WebThreadRun([protectedThis, this] {
         m_model->setVideoFullscreenLayer(nil);
@@ -192,7 +283,7 @@
         m_model->setVideoElement(nullptr);
         m_model = nullptr;
         m_videoElement = nullptr;
-        
+
         [m_controller didFinishFullscreen:this];
     });
 }
@@ -263,12 +354,17 @@
 
 void WebVideoFullscreenControllerContext::setVideoDimensions(bool hasVideo, float width, float height)
 {
-    ASSERT(WebThreadIsCurrent());
-    RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
-    dispatch_async(dispatch_get_main_queue(), [protectedThis, this, hasVideo, width, height] {
-        if (m_interface)
-            m_interface->setVideoDimensions(hasVideo, width, height);
-    });
+    if (WebThreadIsCurrent()) {
+        RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
+        dispatch_async(dispatch_get_main_queue(), [protectedThis, this, hasVideo, width, height] {
+            if (m_interface)
+                m_interface->setVideoDimensions(hasVideo, width, height);
+        });
+        return;
+    }
+
+    if (m_interface)
+        m_interface->setVideoDimensions(hasVideo, width, height);
 }
 
 void WebVideoFullscreenControllerContext::setSeekableRanges(const TimeRanges& timeRanges)
@@ -412,6 +508,128 @@
     return m_model ? m_model->isVisible() : false;
 }
 
+#pragma mark - WebPlaybackSessionModelContext
+
+void WebVideoFullscreenControllerContext::play()
+{
+    ASSERT(isUIThread());
+    RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
+    WebThreadRun([protectedThis, this] {
+        if (m_model)
+            m_model->playbackSessionModel().play();
+    });
+}
+
+void WebVideoFullscreenControllerContext::pause()
+{
+    ASSERT(isUIThread());
+    RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
+    WebThreadRun([protectedThis, this] {
+        if (m_model)
+            m_model->playbackSessionModel().pause();
+    });
+}
+
+void WebVideoFullscreenControllerContext::togglePlayState()
+{
+    ASSERT(isUIThread());
+    RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
+    WebThreadRun([protectedThis, this] {
+        if (m_model)
+            m_model->playbackSessionModel().togglePlayState();
+    });
+}
+
+void WebVideoFullscreenControllerContext::beginScrubbing()
+{
+    ASSERT(isUIThread());
+    RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
+    WebThreadRun([protectedThis, this] {
+        if (m_model)
+            m_model->playbackSessionModel().beginScrubbing();
+    });
+}
+
+void WebVideoFullscreenControllerContext::endScrubbing()
+{
+    ASSERT(isUIThread());
+    RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
+    WebThreadRun([protectedThis, this] {
+        if (m_model)
+            m_model->playbackSessionModel().endScrubbing();
+    });
+}
+
+void WebVideoFullscreenControllerContext::seekToTime(double time)
+{
+    ASSERT(isUIThread());
+    RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
+    WebThreadRun([protectedThis, this, time] {
+        if (m_model)
+            m_model->playbackSessionModel().seekToTime(time);
+    });
+}
+
+void WebVideoFullscreenControllerContext::fastSeek(double time)
+{
+    ASSERT(isUIThread());
+    RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
+    WebThreadRun([protectedThis, this, time] {
+        if (m_model)
+            m_model->playbackSessionModel().fastSeek(time);
+    });
+}
+
+void WebVideoFullscreenControllerContext::beginScanningForward()
+{
+    ASSERT(isUIThread());
+    RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
+    WebThreadRun([protectedThis, this] {
+        if (m_model)
+            m_model->playbackSessionModel().beginScanningForward();
+    });
+}
+
+void WebVideoFullscreenControllerContext::beginScanningBackward()
+{
+    ASSERT(isUIThread());
+    RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
+    WebThreadRun([protectedThis, this] {
+        if (m_model)
+            m_model->playbackSessionModel().beginScanningBackward();
+    });
+}
+
+void WebVideoFullscreenControllerContext::endScanning()
+{
+    ASSERT(isUIThread());
+    RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
+    WebThreadRun([protectedThis, this] {
+        if (m_model)
+            m_model->playbackSessionModel().endScanning();
+    });
+}
+
+void WebVideoFullscreenControllerContext::selectAudioMediaOption(uint64_t index)
+{
+    ASSERT(isUIThread());
+    RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
+    WebThreadRun([protectedThis, this, index] {
+        if (m_model)
+            m_model->playbackSessionModel().selectAudioMediaOption(index);
+    });
+}
+
+void WebVideoFullscreenControllerContext::selectLegibleMediaOption(uint64_t index)
+{
+    ASSERT(isUIThread());
+    RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
+    WebThreadRun([protectedThis, this, index] {
+        if (m_model)
+            m_model->playbackSessionModel().selectLegibleMediaOption(index);
+    });
+}
+
 #pragma mark Other
 
 void WebVideoFullscreenControllerContext::setUpFullscreen(HTMLVideoElement& videoElement, UIView *view, HTMLMediaElementEnums::VideoFullscreenMode mode)
@@ -424,9 +642,15 @@
     dispatch_async(dispatch_get_main_queue(), [protectedThis, this, viewRef, mode] {
         ASSERT(isUIThread());
 
-        m_interface = WebVideoFullscreenInterfaceAVKit::create(WebPlaybackSessionInterfaceAVKit::create().get());
+        Ref<WebPlaybackSessionInterfaceAVKit> sessionInterface = WebPlaybackSessionInterfaceAVKit::create();
+        m_interface = WebVideoFullscreenInterfaceAVKit::create(sessionInterface.get());
+
+        m_sessionModel = WebVideoFullscreenSessionModel::create(*this);
+        sessionInterface->setWebPlaybackSessionModel(m_sessionModel.get());
+
+        m_interface->setWebVideoFullscreenModel(this);
         m_interface->setWebVideoFullscreenChangeObserver(this);
-        m_interface->setWebVideoFullscreenModel(this);
+
         m_videoFullscreenView = adoptNS([[getUIViewClass() alloc] init]);
         
         RefPtr<WebVideoFullscreenControllerContext> protectedThis(this);
@@ -434,13 +658,12 @@
             m_model = WebVideoFullscreenModelVideoElement::create(WebPlaybackSessionModelMediaElement::create().get());
             m_model->setWebVideoFullscreenInterface(this);
             m_model->setVideoElement(m_videoElement.get());
-            
-            bool allowsPictureInPicture = m_videoElement->mediaSession().allowsPictureInPicture(*m_videoElement.get());
 
             IntRect videoElementClientRect = elementRectInWindow(m_videoElement.get());
             FloatRect videoLayerFrame = FloatRect(FloatPoint(), videoElementClientRect.size());
             m_model->setVideoLayerFrame(videoLayerFrame);
             
+            bool allowsPictureInPicture = m_videoElement->mediaSession().allowsPictureInPicture(*m_videoElement.get());
             dispatch_async(dispatch_get_main_queue(), [protectedThis, this, videoElementClientRect, viewRef, mode, allowsPictureInPicture] {
                 m_interface->setupFullscreen(*m_videoFullscreenView.get(), videoElementClientRect, viewRef.get(), mode, allowsPictureInPicture);
             });
@@ -465,6 +688,81 @@
     m_interface->requestHideAndExitFullscreen();
 }
 
+#pragma mark WebPlaybackSessionModel
+
+void WebVideoFullscreenSessionModel::play()
+{
+    if (m_controller)
+        m_controller->play();
+}
+
+void WebVideoFullscreenSessionModel::pause()
+{
+    if (m_controller)
+        m_controller->pause();
+}
+
+void WebVideoFullscreenSessionModel::togglePlayState()
+{
+    if (m_controller)
+        m_controller->togglePlayState();
+}
+
+void WebVideoFullscreenSessionModel::beginScrubbing()
+{
+    if (m_controller)
+        m_controller->beginScrubbing();
+}
+
+void WebVideoFullscreenSessionModel::endScrubbing()
+{
+    if (m_controller)
+        m_controller->endScrubbing();
+}
+
+void WebVideoFullscreenSessionModel::seekToTime(double time)
+{
+    if (m_controller)
+        m_controller->seekToTime(time);
+}
+
+void WebVideoFullscreenSessionModel::fastSeek(double time)
+{
+    if (m_controller)
+        m_controller->fastSeek(time);
+}
+
+void WebVideoFullscreenSessionModel::beginScanningForward()
+{
+    if (m_controller)
+        m_controller->beginScanningForward();
+}
+
+void WebVideoFullscreenSessionModel::beginScanningBackward()
+{
+    if (m_controller)
+        m_controller->beginScanningBackward();
+}
+
+void WebVideoFullscreenSessionModel::endScanning()
+{
+    if (m_controller)
+        m_controller->endScanning();
+}
+
+void WebVideoFullscreenSessionModel::selectAudioMediaOption(uint64_t optionId)
+{
+    if (m_controller)
+        m_controller->selectAudioMediaOption(optionId);
+}
+
+void WebVideoFullscreenSessionModel::selectLegibleMediaOption(uint64_t optionId)
+{
+    if (m_controller)
+        m_controller->selectLegibleMediaOption(optionId);
+}
+
+
 @implementation WebVideoFullscreenController {
     RefPtr<WebVideoFullscreenControllerContext> _context;
     RefPtr<HTMLVideoElement> _videoElement;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to