Title: [201669] trunk/Source/WebInspectorUI
Revision
201669
Author
bb...@apple.com
Date
2016-06-03 16:27:11 -0700 (Fri, 03 Jun 2016)

Log 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.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (201668 => 201669)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-06-03 23:06:39 UTC (rev 201668)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-06-03 23:27:11 UTC (rev 201669)
@@ -1,3 +1,14 @@
+2016-06-03  Brian Burg  <bb...@apple.com>
+
+        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.
+
 2016-06-03  Nikita Vasilyev  <nvasil...@apple.com>
 
         Web Inspector: Remove unused WebInspector.CSSCompletions methods

Modified: trunk/Source/WebInspectorUI/UserInterface/Protocol/InspectorBackend.js (201668 => 201669)


--- trunk/Source/WebInspectorUI/UserInterface/Protocol/InspectorBackend.js	2016-06-03 23:06:39 UTC (rev 201668)
+++ trunk/Source/WebInspectorUI/UserInterface/Protocol/InspectorBackend.js	2016-06-03 23:27:11 UTC (rev 201669)
@@ -71,6 +71,8 @@
 
     set dumpInspectorTimeStats(value)
     {
+        this._dumpInspectorTimeStats = !!value;
+
         if (!this.dumpInspectorProtocolMessages)
             this.dumpInspectorProtocolMessages = true;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to