Title: [138507] trunk/Source/WebCore
Revision
138507
Author
yu...@chromium.org
Date
2012-12-27 08:35:27 -0800 (Thu, 27 Dec 2012)

Log Message

       Unreviewed. Use real worker in heap profiler instead of the fake one
       (was accidentally switched to the fake worker).

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (138506 => 138507)


--- trunk/Source/WebCore/ChangeLog	2012-12-27 16:32:02 UTC (rev 138506)
+++ trunk/Source/WebCore/ChangeLog	2012-12-27 16:35:27 UTC (rev 138507)
@@ -1,3 +1,11 @@
+2012-12-27  Yury Semikhatsky  <yu...@chromium.org>
+
+       Unreviewed. Use real worker in heap profiler instead of the fake one
+       (was accidentally switched to the fake worker).
+
+        * inspector/front-end/HeapSnapshotProxy.js:
+        (WebInspector.HeapSnapshotWorker):
+
 2012-12-27  Vsevolod Vlasov  <vse...@chromium.org>
 
         Web Inspector: [Regression] Can not set breakpoints in scripts loaded with source map.

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


--- trunk/Source/WebCore/inspector/front-end/HeapSnapshotProxy.js	2012-12-27 16:32:02 UTC (rev 138506)
+++ trunk/Source/WebCore/inspector/front-end/HeapSnapshotProxy.js	2012-12-27 16:35:27 UTC (rev 138507)
@@ -183,7 +183,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
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to