Changeset 161953 in webkit for trunk/Source/JavaScriptCore


Ignore:
Timestamp:
Jan 14, 2014, 12:35:40 AM (11 years ago)
Author:
[email protected]
Message:

Web Inspector: RemoteInspector::updateDebuggable may miss a push
https://bugs.webkit.org/show_bug.cgi?id=126965

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2014-01-14
Reviewed by Timothy Hatcher.

  • inspector/remote/RemoteInspector.mm:

(Inspector::RemoteInspector::updateDebuggable):
Always push an update. If a debuggable went from allowed to
not allowed, we would have missed pushing an update.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r161914 r161953  
     12014-01-14  Joseph Pecoraro  <[email protected]>
     2
     3        Web Inspector: RemoteInspector::updateDebuggable may miss a push
     4        https://bugs.webkit.org/show_bug.cgi?id=126965
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * inspector/remote/RemoteInspector.mm:
     9        (Inspector::RemoteInspector::updateDebuggable):
     10        Always push an update. If a debuggable went from allowed to
     11        not allowed, we would have missed pushing an update.
     12
    1132014-01-13  Mark Hahnenberg  <[email protected]>
    214
  • trunk/Source/JavaScriptCore/inspector/remote/RemoteInspector.mm

    r160887 r161953  
    132132    ASSERT_UNUSED(result, !result.isNewEntry);
    133133
    134     if (debuggable->remoteDebuggingAllowed())
    135         pushListingSoon();
     134    pushListingSoon();
    136135}
    137136
Note: See TracChangeset for help on using the changeset viewer.