Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(376)

Side by Side Diff: runtime/observatory/lib/src/elements/cpu_profile.html

Issue 1014473006: Profiler fixes for 1.9 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/vm/profiler_service.cc » ('j') | runtime/vm/profiler_service.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="code_ref.html"> 2 <link rel="import" href="code_ref.html">
3 <link rel="import" href="function_ref.html"> 3 <link rel="import" href="function_ref.html">
4 <link rel="import" href="nav_bar.html"> 4 <link rel="import" href="nav_bar.html">
5 <link rel="import" href="observatory_element.html"> 5 <link rel="import" href="observatory_element.html">
6 <link rel="import" href="sliding_checkbox.html"> 6 <link rel="import" href="sliding_checkbox.html">
7 7
8 <polymer-element name="cpu-profile" extends="observatory-element"> 8 <polymer-element name="cpu-profile" extends="observatory-element">
9 <template> 9 <template>
10 <link rel="stylesheet" href="css/shared.css"> 10 <link rel="stylesheet" href="css/shared.css">
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 <div class="memberValue"> 146 <div class="memberValue">
147 <select value="{{tagSelector}}"> 147 <select value="{{tagSelector}}">
148 <option value="UserVM">User &gt; VM</option> 148 <option value="UserVM">User &gt; VM</option>
149 <option value="UserOnly">User</option> 149 <option value="UserOnly">User</option>
150 <option value="VMUser">VM &gt; User</option> 150 <option value="VMUser">VM &gt; User</option>
151 <option value="VMOnly">VM</option> 151 <option value="VMOnly">VM</option>
152 <option value="None">None</option> 152 <option value="None">None</option>
153 </select> 153 </select>
154 </div> 154 </div>
155 </div> 155 </div>
156 <!--- Experimental
156 <div class="memberItem"> 157 <div class="memberItem">
157 <div class="memberName">Call Tree Direction</div> 158 <div class="memberName">Call Tree Direction</div>
158 <div class="memberValue"> 159 <div class="memberValue">
159 <select value="{{directionSelector}}"> 160 <select value="{{directionSelector}}">
160 <!--- Experimental <option value="Down">Top down</option> ---> 161 <option value="Down">Top down</option>
161 <option value="Up">Bottom up</option> 162 <option value="Up">Bottom up</option>
162 </select> 163 </select>
163 </div> 164 </div>
164 </div> 165 </div>
166 --->
165 </div> 167 </div>
166 </template> 168 </template>
167 <template if="{{ state == 'Loaded' && directionSelector == 'Down' }}"> 169 <template if="{{ state == 'Loaded' && directionSelector == 'Down' }}">
168 <br> 170 <br>
169 <div class="statusBox shadow"> 171 <div class="statusBox shadow">
170 <div>Tree is rooted at main.</div> 172 <div>Tree is rooted at main.</div>
171 <br> 173 <br>
172 <div>Child nodes are callees.</div> 174 <div>Child nodes are callees.</div>
173 <br> 175 <br>
174 <div class="notice">To get the most out of this mode you may need to l aunch Dart with a higher --profile-depth flag value.</div> 176 <div class="notice">To get the most out of this mode you may need to l aunch Dart with a higher --profile-depth flag value.</div>
(...skipping 20 matching lines...) Expand all
195 </thead> 197 </thead>
196 <tbody id="treeBody"> 198 <tbody id="treeBody">
197 </tbody> 199 </tbody>
198 </table> 200 </table>
199 </div> 201 </div>
200 </div> 202 </div>
201 </template> 203 </template>
202 </polymer-element> 204 </polymer-element>
203 205
204 <script type="application/dart" src="cpu_profile.dart"></script> 206 <script type="application/dart" src="cpu_profile.dart"></script>
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/profiler_service.cc » ('j') | runtime/vm/profiler_service.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698