Changeset 201669 in webkit


Ignore:
Timestamp:
Jun 3, 2016 4:27:11 PM (8 years ago)
Author:
BJ Burg
Message:

Web Inspector: setter for debugging flag InspectorBackend.dumpInspectorTimeStats does not work
https://bugs.webkit.org/show_bug.cgi?id=158366

Reviewed by Timothy Hatcher.

  • UserInterface/Protocol/InspectorBackend.js:

(InspectorBackendClass.prototype.set dumpInspectorTimeStats):
Actually update the backing member when the setter is called.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r201658 r201669  
     12016-06-03  Brian Burg  <bburg@apple.com>
     2
     3        Web Inspector: setter for debugging flag InspectorBackend.dumpInspectorTimeStats does not work
     4        https://bugs.webkit.org/show_bug.cgi?id=158366
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Protocol/InspectorBackend.js:
     9        (InspectorBackendClass.prototype.set dumpInspectorTimeStats):
     10        Actually update the backing member when the setter is called.
     11
    1122016-06-03  Nikita Vasilyev  <nvasilyev@apple.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Protocol/InspectorBackend.js

    r201630 r201669  
    7272    set dumpInspectorTimeStats(value)
    7373    {
     74        this._dumpInspectorTimeStats = !!value;
     75
    7476        if (!this.dumpInspectorProtocolMessages)
    7577            this.dumpInspectorProtocolMessages = true;
Note: See TracChangeset for help on using the changeset viewer.