Changeset 146987 in webkit


Ignore:
Timestamp:
Mar 27, 2013 8:35:45 AM (11 years ago)
Author:
loislo@chromium.org
Message:

Web Inspector: CPU profiler. Swap FlameChart with Data Grid.
https://bugs.webkit.org/show_bug.cgi?id=113395

Reviewed by Pavel Feldman.

Looks like FlameChart is more powerful and flexible instrument
than plain old ProfileTree in DataGrid. The same action like
'look for the most expensive function in a frame' could be easily
done with FlameChart and need number of clicks in DataGrid.
So in an offline discussion we decided to place FlameChart on top of DataGrid.

  • inspector/front-end/CPUProfileView.js:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r146986 r146987  
     12013-03-27  Ilya Tikhonovsky  <loislo@chromium.org>
     2
     3        Web Inspector: CPU profiler. Swap FlameChart with Data Grid.
     4        https://bugs.webkit.org/show_bug.cgi?id=113395
     5
     6        Reviewed by Pavel Feldman.
     7
     8        Looks like FlameChart is more powerful and flexible instrument
     9        than plain old ProfileTree in DataGrid. The same action like
     10        'look for the most expensive function in a frame' could be easily
     11        done with FlameChart and need number of clicks in DataGrid.
     12        So in an offline discussion we decided to place FlameChart on top of DataGrid.
     13
     14        * inspector/front-end/CPUProfileView.js:
     15
    1162013-03-27  Chris Fleizach  <cfleizach@apple.com>
    217
  • trunk/Source/WebCore/inspector/front-end/CPUProfileView.js

    r146587 r146987  
    5757        this._splitView.show(this.element);
    5858
    59         this.dataGrid.show(this._splitView.firstElement());
    60 
    6159        this.flameChart = new WebInspector.FlameChart(this);
    6260        this.flameChart.addEventListener(WebInspector.FlameChart.Events.SelectedNode, this._revealProfilerNode.bind(this));
    63         this.flameChart.show(this._splitView.secondElement());
     61        this.flameChart.show(this._splitView.firstElement());
     62
     63        this.dataGrid.show(this._splitView.secondElement());
    6464    } else
    6565        this.dataGrid.show(this.element);
Note: See TracChangeset for help on using the changeset viewer.