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

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

Issue 897193002: Finish moving service protocol to json rpc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review 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="{{ isolate }}"></isolate-nav-menu> 13 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu>
14 <nav-menu link="{{ '/profiler' + isolate.link }}" anchor="cpu profile" las t="{{ true }}"></nav-menu> 14 <nav-menu link="{{ makeLink('/profiler', isolate) }}" anchor="cpu profile" last="{{ 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/code_view.html ('k') | runtime/observatory/lib/src/elements/debugger.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698