Changeset 142393 in webkit


Ignore:
Timestamp:
Feb 10, 2013 2:42:48 AM (11 years ago)
Author:
zandobersek@gmail.com
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 <zdobersek@igalia.com> 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):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r142390 r142393  
     12013-02-10  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [WebKit2][Gtk] Remove the fullscreen manager proxy message receiver upon invalidating
     4        https://bugs.webkit.org/show_bug.cgi?id=109352
     5
     6        Reviewed by Sam Weinig.
     7
     8        As added for the Mac port in r142160 due to the changes in the same revision, remove
     9        the fullscreen manager proxy as a message receiver. Also fixes a failing unit test.
     10
     11        * UIProcess/gtk/WebFullScreenManagerProxyGtk.cpp:
     12        (WebKit::WebFullScreenManagerProxy::invalidate):
     13
    1142013-02-10  Zoltan Arvai  <zarvai@inf.u-szeged.hu>
    215
  • trunk/Source/WebKit2/UIProcess/gtk/WebFullScreenManagerProxyGtk.cpp

    r113238 r142393  
    3636void WebFullScreenManagerProxy::invalidate()
    3737{
     38    m_page->process()->removeMessageReceiver(Messages::WebFullScreenManagerProxy::messageReceiverName(), m_page->pageID());
    3839    m_webView = 0;
    3940}
Note: See TracChangeset for help on using the changeset viewer.