Changeset 202353 in webkit


Ignore:
Timestamp:
Jun 22, 2016 3:19:22 PM (8 years ago)
Author:
BJ Burg
Message:

Web Inspector: don't start auto capturing if the Inspector window is not visible
https://bugs.webkit.org/show_bug.cgi?id=159014

Reviewed by Joseph Pecoraro.
<rdar://problem/26931269>

Followup, add a missing super.closed() call mentioned in review comments.

  • UserInterface/Views/TimelineTabContentView.js:

(WebInspector.TimelineTabContentView.prototype.closed):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r202352 r202353  
     12016-06-22  Brian Burg  <bburg@apple.com>
     2
     3        Web Inspector: don't start auto capturing if the Inspector window is not visible
     4        https://bugs.webkit.org/show_bug.cgi?id=159014
     5
     6        Reviewed by Joseph Pecoraro.
     7        <rdar://problem/26931269>
     8
     9        Followup, add a missing super.closed() call mentioned in review comments.
     10
     11        * UserInterface/Views/TimelineTabContentView.js:
     12        (WebInspector.TimelineTabContentView.prototype.closed):
     13
    1142016-06-22  Brian Burg  <bburg@apple.com>
    215
  • trunk/Source/WebInspectorUI/UserInterface/Views/TimelineTabContentView.js

    r202352 r202353  
    296296    closed()
    297297    {
     298        super.closed();
     299
    298300        if (WebInspector.FPSInstrument.supported())
    299301            this.contentBrowser.navigationBar.removeEventListener(null, null, this);
Note: See TracChangeset for help on using the changeset viewer.