Title: [142393] trunk/Source/WebKit2
Revision
142393
Author
[email protected]
Date
2013-02-10 02:42:48 -0800 (Sun, 10 Feb 2013)

Log Message

[WebKit2][Gtk] Remove the fullscreen manager proxy message receiver upon invalidating
https://bugs.webkit.org/show_bug.cgi?id=109352

Patch by Zan Dobersek <[email protected]> on 2013-02-10
Reviewed by Sam Weinig.

As added for the Mac port in r142160 due to the changes in the same revision, remove
the fullscreen manager proxy as a message receiver. Also fixes a failing unit test.

* UIProcess/gtk/WebFullScreenManagerProxyGtk.cpp:
(WebKit::WebFullScreenManagerProxy::invalidate):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (142392 => 142393)


--- trunk/Source/WebKit2/ChangeLog	2013-02-10 10:40:34 UTC (rev 142392)
+++ trunk/Source/WebKit2/ChangeLog	2013-02-10 10:42:48 UTC (rev 142393)
@@ -1,3 +1,16 @@
+2013-02-10  Zan Dobersek  <[email protected]>
+
+        [WebKit2][Gtk] Remove the fullscreen manager proxy message receiver upon invalidating
+        https://bugs.webkit.org/show_bug.cgi?id=109352
+
+        Reviewed by Sam Weinig.
+
+        As added for the Mac port in r142160 due to the changes in the same revision, remove
+        the fullscreen manager proxy as a message receiver. Also fixes a failing unit test.
+
+        * UIProcess/gtk/WebFullScreenManagerProxyGtk.cpp:
+        (WebKit::WebFullScreenManagerProxy::invalidate):
+
 2013-02-10  Zoltan Arvai  <[email protected]>
 
         [WK2] Fix build on PLUGIN_ARCHITECTURE(UNSUPPORTED) after r142314

Modified: trunk/Source/WebKit2/UIProcess/gtk/WebFullScreenManagerProxyGtk.cpp (142392 => 142393)


--- trunk/Source/WebKit2/UIProcess/gtk/WebFullScreenManagerProxyGtk.cpp	2013-02-10 10:40:34 UTC (rev 142392)
+++ trunk/Source/WebKit2/UIProcess/gtk/WebFullScreenManagerProxyGtk.cpp	2013-02-10 10:42:48 UTC (rev 142393)
@@ -35,6 +35,7 @@
 
 void WebFullScreenManagerProxy::invalidate()
 {
+    m_page->process()->removeMessageReceiver(Messages::WebFullScreenManagerProxy::messageReceiverName(), m_page->pageID());
     m_webView = 0;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to