Title: [197945] trunk/Source/WebKit2
Revision
197945
Author
[email protected]
Date
2016-03-10 10:39:46 -0800 (Thu, 10 Mar 2016)

Log Message

[MediaStream] push media stream state to the UI process
https://bugs.webkit.org/show_bug.cgi?id=155281

Reviewed by Dean Jackson.

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::didCommitLoadForFrame): Don't clear m_mediaState, it is done in
  WebPageProxy::resetState. This reverts a change added in r197929.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (197944 => 197945)


--- trunk/Source/WebKit2/ChangeLog	2016-03-10 18:30:38 UTC (rev 197944)
+++ trunk/Source/WebKit2/ChangeLog	2016-03-10 18:39:46 UTC (rev 197945)
@@ -1,3 +1,15 @@
+2016-03-10  Eric Carlson  <[email protected]>
+
+        [MediaStream] push media stream state to the UI process
+        https://bugs.webkit.org/show_bug.cgi?id=155281
+
+        Reviewed by Dean Jackson.
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::didCommitLoadForFrame): Don't clear m_mediaState, it is done in
+          WebPageProxy::resetState. This reverts a change added in r197929.
+        
+
 2016-03-08  Sam Weinig  <[email protected]>
 
         Add a baseURL parameter to _WKUserStyleSheet

Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp (197944 => 197945)


--- trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2016-03-10 18:30:38 UTC (rev 197944)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2016-03-10 18:39:46 UTC (rev 197945)
@@ -3088,7 +3088,6 @@
     }
 
     m_pageLoadState.commitChanges();
-    m_mediaState = MediaProducer::IsNotPlaying;
     if (m_navigationClient) {
         if (frame->isMainFrame())
             m_navigationClient->didCommitNavigation(*this, navigation.get(), m_process->transformHandlesToObjects(userData.object()).get());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to