summaryrefslogtreecommitdiff
path: root/browser/devtools/performance/performance.xul
blob: 6b391447c3158b92414489100c002494e50327da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://browser/content/devtools/widgets.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/skin/devtools/common.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/skin/devtools/widgets.css" type="text/css"?>
<?xml-stylesheet href="chrome://browser/skin/devtools/performance.css" type="text/css"?>
<!DOCTYPE window [
  <!ENTITY % profilerDTD SYSTEM "chrome://browser/locale/devtools/profiler.dtd">
  %profilerDTD;
]>

<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  <script src="chrome://browser/content/devtools/theme-switching.js"/>
  <script type="application/javascript" src="performance/performance-controller.js"/>
  <script type="application/javascript" src="performance/performance-view.js"/>
  <script type="application/javascript" src="performance/recording-model.js"/>
  <script type="application/javascript" src="performance/views/overview.js"/>
  <script type="application/javascript" src="performance/views/toolbar.js"/>
  <script type="application/javascript" src="performance/views/details-subview.js"/>
  <script type="application/javascript" src="performance/views/details-waterfall.js"/>
  <script type="application/javascript" src="performance/views/details-js-call-tree.js"/>
  <script type="application/javascript" src="performance/views/details-js-flamegraph.js"/>
  <script type="application/javascript" src="performance/views/details-memory-call-tree.js"/>
  <script type="application/javascript" src="performance/views/details-memory-flamegraph.js"/>
  <script type="application/javascript" src="performance/views/details.js"/>
  <script type="application/javascript" src="performance/views/recordings.js"/>

  <popupset id="performance-options-popupset">
    <menupopup id="performance-options-menupopup">
      <menuitem id="option-show-platform-data"
                type="checkbox"
                data-pref="show-platform-data"
                label="&profilerUI.showPlatformData;"
                tooltiptext="&profilerUI.showPlatformData.tooltiptext;"/>
      <menuitem id="option-enable-memory"
                type="checkbox"
                data-pref="enable-memory"
                label="&profilerUI.enableMemory;"
                tooltiptext="&profilerUI.enableMemory.tooltiptext;"/>
      <menuitem id="option-enable-framerate"
                type="checkbox"
                data-pref="enable-framerate"
                label="&profilerUI.enableFramerate;"
                tooltiptext="&profilerUI.enableFramerate.tooltiptext;"/>
      <menuitem id="option-invert-call-tree"
                type="checkbox"
                data-pref="invert-call-tree"
                label="&profilerUI.invertTree;"
                tooltiptext="&profilerUI.invertTree.tooltiptext;"/>
      <menuitem id="option-invert-flame-graph"
                type="checkbox"
                data-pref="invert-flame-graph"
                label="&profilerUI.invertFlameGraph;"
                tooltiptext="&profilerUI.invertFlameGraph.tooltiptext;"/>
      <menuitem id="option-flatten-tree-recursion"
                type="checkbox"
                data-pref="flatten-tree-recursion"
                label="&profilerUI.flattenTreeRecursion;"
                tooltiptext="&profilerUI.flattenTreeRecursion.tooltiptext;"/>
    </menupopup>
  </popupset>

  <hbox class="theme-body" flex="1">
    <vbox id="recordings-pane">
      <toolbar id="recordings-toolbar"
               class="devtools-toolbar">
        <hbox id="recordings-controls"
              class="devtools-toolbarbutton-group">
          <toolbarbutton id="main-record-button"
                         class="devtools-toolbarbutton record-button"
                         tooltiptext="&profilerUI.recordButton.tooltip;"/>
          <toolbarbutton id="import-button"
                         class="devtools-toolbarbutton"
                         label="&profilerUI.importButton;"/>
          <toolbarbutton id="clear-button"
                         class="devtools-toolbarbutton"
                         label="&profilerUI.clearButton;"/>
        </hbox>
      </toolbar>
      <vbox id="recordings-list" flex="1"/>
    </vbox>

    <vbox id="performance-pane" flex="1">
      <toolbar id="performance-toolbar" class="devtools-toolbar">
        <hbox id="performance-toolbar-controls-detail-views" class="devtools-toolbarbutton-group">
          <toolbarbutton id="select-waterfall-view"
                         class="devtools-toolbarbutton devtools-button"
                         label="&profilerUI.toolbar.waterfall;"
                         data-view="waterfall" />
          <toolbarbutton id="select-js-calltree-view"
                         class="devtools-toolbarbutton devtools-button"
                         label="&profilerUI.toolbar.js-calltree;"
                         data-view="js-calltree" />
          <toolbarbutton id="select-js-flamegraph-view"
                         class="devtools-toolbarbutton devtools-button"
                         label="&profilerUI.toolbar.js-flamegraph;"
                         data-view="js-flamegraph" />
          <toolbarbutton id="select-memory-calltree-view"
                         class="devtools-toolbarbutton devtools-button"
                         label="&profilerUI.toolbar.memory-calltree;"
                         data-view="memory-calltree" />
          <toolbarbutton id="select-memory-flamegraph-view"
                         class="devtools-toolbarbutton devtools-button"
                         label="&profilerUI.toolbar.memory-flamegraph;"
                         data-view="memory-flamegraph" />
        </hbox>
        <spacer flex="1"></spacer>
        <hbox id="performance-toolbar-control-options" class="devtools-toolbarbutton-group">
          <toolbarbutton id="performance-options-button"
                         class="devtools-toolbarbutton devtools-option-toolbarbutton"
                         popup="performance-options-menupopup"
                         tooltiptext="&profilerUI.options.tooltiptext;"/>
        </hbox>
      </toolbar>

      <deck id="performance-view" flex="1">
        <hbox id="empty-notice"
              class="notice-container"
              align="center"
              pack="center"
              flex="1">
          <label value="&profilerUI.emptyNotice1;"/>
          <button class="devtools-toolbarbutton record-button"
                  standalone="true" />
          <label value="&profilerUI.emptyNotice2;"/>
        </hbox>
        <vbox id="performance-view-content" flex="1">
          <vbox id="overview-pane">
            <hbox id="markers-overview"/>
            <hbox id="memory-overview"/>
            <hbox id="time-framerate"/>
          </vbox>
          <deck id="details-pane-container" flex="1">
            <hbox id="recording-notice"
                  class="notice-container"
                  align="center"
                  pack="center"
                  flex="1">
              <label value="&profilerUI.stopNotice1;"/>
              <button class="devtools-toolbarbutton record-button"
                      standalone="true"
                      checked="true" />
              <label value="&profilerUI.stopNotice2;"/>
            </hbox>
            <deck id="details-pane" flex="1">
              <hbox id="waterfall-view" flex="1">
                <vbox id="waterfall-breakdown" flex="1" />
                <splitter class="devtools-side-splitter"/>
                <vbox id="waterfall-details"
                      class="theme-sidebar"
                      width="150"
                      height="150"/>
              </hbox>

              <vbox id="js-calltree-view" flex="1">
                <hbox class="call-tree-headers-container">
                  <label class="plain call-tree-header"
                         type="duration"
                         crop="end"
                         value="&profilerUI.table.totalDuration2;"/>
                  <label class="plain call-tree-header"
                         type="percentage"
                         crop="end"
                         value="&profilerUI.table.totalPercentage;"/>
                  <label class="plain call-tree-header"
                         type="self-duration"
                         crop="end"
                         value="&profilerUI.table.selfDuration2;"/>
                  <label class="plain call-tree-header"
                         type="self-percentage"
                         crop="end"
                         value="&profilerUI.table.selfPercentage;"/>
                  <label class="plain call-tree-header"
                         type="samples"
                         crop="end"
                         value="&profilerUI.table.samples;"/>
                  <label class="plain call-tree-header"
                         type="function"
                         crop="end"
                         value="&profilerUI.table.function;"/>
                </hbox>
                <vbox class="call-tree-cells-container" flex="1"/>
              </vbox>

              <hbox id="js-flamegraph-view" flex="1">
              </hbox>

              <vbox id="memory-calltree-view" flex="1">
                <hbox class="call-tree-headers-container">
                  <label class="plain call-tree-header"
                         type="duration"
                         crop="end"
                         value="&profilerUI.table.totalDuration2;"/>
                  <label class="plain call-tree-header"
                         type="percentage"
                         crop="end"
                         value="&profilerUI.table.totalPercentage;"/>
                  <label class="plain call-tree-header"
                         type="allocations"
                         crop="end"
                         value="&profilerUI.table.totalAlloc;"/>
                  <label class="plain call-tree-header"
                         type="self-duration"
                         crop="end"
                         value="&profilerUI.table.selfDuration2;"/>
                  <label class="plain call-tree-header"
                         type="self-percentage"
                         crop="end"
                         value="&profilerUI.table.selfPercentage;"/>
                  <label class="plain call-tree-header"
                         type="self-allocations"
                         crop="end"
                         value="&profilerUI.table.selfAlloc;"/>
                  <label class="plain call-tree-header"
                         type="samples"
                         crop="end"
                         value="&profilerUI.table.samples;"/>
                  <label class="plain call-tree-header"
                         type="function"
                         crop="end"
                         value="&profilerUI.table.function;"/>
                </hbox>
                <vbox class="call-tree-cells-container" flex="1"/>
              </vbox>

              <hbox id="memory-flamegraph-view" flex="1">
              </hbox>
            </deck>
          </deck>
        </vbox>
      </deck>
    </vbox>
  </hbox>
</window>