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

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

Issue 823403004: Begin migrating the vm service from a rest-style interface to a json-rpc style interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: remove old-style standalone tests. Created 5 years, 10 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
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">
11 <nav-bar> 11 <nav-bar>
12 <top-nav-menu></top-nav-menu> 12 <top-nav-menu></top-nav-menu>
13 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> 13 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu>
14 <nav-menu link="{{ profile.isolate.relativeLink('profile') }}" anchor="cpu profile" last="{{ true }}"></nav-menu> 14 <nav-menu link="{{ '/profiler' + isolate.link }}" anchor="cpu profile" las t="{{ true }}"></nav-menu>
15 <nav-refresh callback="{{ refresh }}"></nav-refresh> 15 <nav-refresh callback="{{ refresh }}"></nav-refresh>
16 <nav-control></nav-control> 16 <nav-control></nav-control>
17 </nav-bar> 17 </nav-bar>
18 <style> 18 <style>
19 .table { 19 .table {
20 border-collapse: collapse!important; 20 border-collapse: collapse!important;
21 width: 100%; 21 width: 100%;
22 margin-bottom: 20px 22 margin-bottom: 20px
23 } 23 }
24 .table thead > tr > th, 24 .table thead > tr > th,
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 <div class="memberValue">{{ sampleDepth }} stack frames</div> 124 <div class="memberValue">{{ sampleDepth }} stack frames</div>
125 </div> 125 </div>
126 <div class="memberItem"> 126 <div class="memberItem">
127 <div class="memberName">Display cutoff</div> 127 <div class="memberName">Display cutoff</div>
128 <div class="memberValue">{{ displayCutoff }}</div> 128 <div class="memberValue">{{ displayCutoff }}</div>
129 </div> 129 </div>
130 <div class="memberItem"> 130 <div class="memberItem">
131 <div class="memberName">Tags</div> 131 <div class="memberName">Tags</div>
132 <div class="memberValue"> 132 <div class="memberValue">
133 <select value="{{tagSelector}}"> 133 <select value="{{tagSelector}}">
134 <option value="uv">User &gt; VM</option> 134 <option value="UserVM">User &gt; VM</option>
135 <option value="u">User</option> 135 <option value="UserOnly">User</option>
136 <option value="vu">VM &gt; User</option> 136 <option value="VMUser">VM &gt; User</option>
137 <option value="v">VM</option> 137 <option value="VMOnly">VM</option>
138 <option value="hide">None</option> 138 <option value="None">None</option>
139 </select> 139 </select>
140 </div> 140 </div>
141 </div> 141 </div>
142 </div> 142 </div>
143 <hr> 143 <hr>
144 <table id="tableTree" class="table"> 144 <table id="tableTree" class="table">
145 <thead id="tableTreeheader"> 145 <thead id="tableTreeheader">
146 <tr> 146 <tr>
147 <th>Method</th> 147 <th>Method</th>
148 <th>Self</th> 148 <th>Self</th>
149 </tr> 149 </tr>
150 </thead> 150 </thead>
151 <tbody id="tableTreeBody"> 151 <tbody id="tableTreeBody">
152 </tbody> 152 </tbody>
153 </table> 153 </table>
154 </div> 154 </div>
155 </template> 155 </template>
156 </polymer-element> 156 </polymer-element>
157 157
158 <script type="application/dart" src="cpu_profile.dart"></script> 158 <script type="application/dart" src="cpu_profile.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/cpu_profile.dart ('k') | runtime/observatory/lib/src/elements/debugger.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698