Title: [116851] trunk/Source/WebCore
Revision
116851
Author
[email protected]
Date
2012-05-12 05:36:13 -0700 (Sat, 12 May 2012)

Log Message

Web Inspector: unreviewed one line fix.

* inspector/front-end/HeapSnapshotProxy.js:
(WebInspector.HeapSnapshotWorker):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (116850 => 116851)


--- trunk/Source/WebCore/ChangeLog	2012-05-12 12:02:08 UTC (rev 116850)
+++ trunk/Source/WebCore/ChangeLog	2012-05-12 12:36:13 UTC (rev 116851)
@@ -1,5 +1,12 @@
 2012-05-12  Ilya Tikhonovsky  <[email protected]>
 
+        Web Inspector: unreviewed one line fix.
+
+        * inspector/front-end/HeapSnapshotProxy.js:
+        (WebInspector.HeapSnapshotWorker):
+
+2012-05-12  Ilya Tikhonovsky  <[email protected]>
+
         Web Inspector: Load context menu item has to be shown for all Profiles panel.
         https://bugs.webkit.org/show_bug.cgi?id=86290
 

Modified: trunk/Source/WebCore/inspector/front-end/HeapSnapshotProxy.js (116850 => 116851)


--- trunk/Source/WebCore/inspector/front-end/HeapSnapshotProxy.js	2012-05-12 12:02:08 UTC (rev 116850)
+++ trunk/Source/WebCore/inspector/front-end/HeapSnapshotProxy.js	2012-05-12 12:36:13 UTC (rev 116851)
@@ -124,7 +124,7 @@
     this._callbacks = [];
     this._previousCallbacks = [];
     // There is no support for workers in Chromium DRT.
-    this._worker =  /*typeof InspectorTest === "undefined" ? new WebInspector.HeapSnapshotRealWorker() :*/ new WebInspector.HeapSnapshotFakeWorker();
+    this._worker = typeof InspectorTest === "undefined" ? new WebInspector.HeapSnapshotRealWorker() : new WebInspector.HeapSnapshotFakeWorker();
     this._worker.addEventListener("message", this._messageReceived, this);
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to