Changeset 207466 in webkit


Ignore:
Timestamp:
Oct 18, 2016 10:07:35 AM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Remote Web Inspector: Timeline UI not updating while recording
https://bugs.webkit.org/show_bug.cgi?id=163582
<rdar://problem/28766837>

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-10-18
Reviewed by Timothy Hatcher.

  • WebProcess/WebPage/RemoteWebInspectorUI.cpp:

(WebKit::RemoteWebInspectorUI::frontendLoaded):
Local inspector windows keep the web view alive and toggle the
WebInspector.visible state depending on whether or not an inspector is
open. Remote Inspector windows go away when closed, so they can always
be marked as open. This matches earlier remote inspector behavior.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r207463 r207466  
     12016-10-18  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Remote Web Inspector: Timeline UI not updating while recording
     4        https://bugs.webkit.org/show_bug.cgi?id=163582
     5        <rdar://problem/28766837>
     6
     7        Reviewed by Timothy Hatcher.
     8
     9        * WebProcess/WebPage/RemoteWebInspectorUI.cpp:
     10        (WebKit::RemoteWebInspectorUI::frontendLoaded):
     11        Local inspector windows keep the web view alive and toggle the
     12        WebInspector.visible state depending on whether or not an inspector is
     13        open. Remote Inspector windows go away when closed, so they can always
     14        be marked as open. This matches earlier remote inspector behavior.
     15
    1162016-10-18  Eric Carlson  <eric.carlson@apple.com>
    217
  • trunk/Source/WebKit2/WebProcess/WebPage/RemoteWebInspectorUI.cpp

    r205369 r207466  
    9696    m_frontendAPIDispatcher.frontendLoaded();
    9797
     98    m_frontendAPIDispatcher.dispatchCommand(ASCIILiteral("setIsVisible"), true);
     99
    98100    bringToFront();
    99101}
Note: See TracChangeset for help on using the changeset viewer.