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

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

Issue 1288853002: Fix cpu profile table (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « runtime/observatory/lib/src/elements/cpu_profile.dart ('k') | no next file » | no next file with comments »
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="action_link.html"> 2 <link rel="import" href="action_link.html">
3 <link rel="import" href="observatory_element.html"> 3 <link rel="import" href="observatory_element.html">
4 4
5 <polymer-element name="nav-bar" extends="observatory-element"> 5 <polymer-element name="nav-bar" extends="observatory-element">
6 <template> 6 <template>
7 <link rel="stylesheet" href="css/shared.css"> 7 <link rel="stylesheet" href="css/shared.css">
8 <style> 8 <style>
9 nav { 9 nav {
10 position: fixed; 10 position: fixed;
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 190
191 <polymer-element name="isolate-nav-menu" extends="observatory-element"> 191 <polymer-element name="isolate-nav-menu" extends="observatory-element">
192 <template> 192 <template>
193 <nav-menu link="{{ makeLink('/inspect', isolate) }}" anchor="{{ isolate.name }}" last="{{ last }}"> 193 <nav-menu link="{{ makeLink('/inspect', isolate) }}" anchor="{{ isolate.name }}" last="{{ last }}">
194 <nav-menu-item link="{{ makeLink('/debugger', isolate) }}" 194 <nav-menu-item link="{{ makeLink('/debugger', isolate) }}"
195 anchor="debugger"></nav-menu-item> 195 anchor="debugger"></nav-menu-item>
196 <nav-menu-item link="{{ makeLink('/class-tree', isolate) }}" 196 <nav-menu-item link="{{ makeLink('/class-tree', isolate) }}"
197 anchor="class hierarchy"></nav-menu-item> 197 anchor="class hierarchy"></nav-menu-item>
198 <nav-menu-item link="{{ makeLink('/profiler', isolate) }}" 198 <nav-menu-item link="{{ makeLink('/profiler', isolate) }}"
199 anchor="cpu profile"></nav-menu-item> 199 anchor="cpu profile"></nav-menu-item>
200 <nav-menu-item link="{{ makeLink('/profiler-table', isolate) }}"
201 anchor="cpu profile (table)"></nav-menu-item>
200 <nav-menu-item link="{{ makeLink('/allocation-profiler', isolate) }}" 202 <nav-menu-item link="{{ makeLink('/allocation-profiler', isolate) }}"
201 anchor="allocation profile"></nav-menu-item> 203 anchor="allocation profile"></nav-menu-item>
202 <nav-menu-item link="{{ makeLink('/heap-map', isolate) }}" 204 <nav-menu-item link="{{ makeLink('/heap-map', isolate) }}"
203 anchor="heap map"></nav-menu-item> 205 anchor="heap map"></nav-menu-item>
204 <nav-menu-item link="{{ makeLink('/metrics', isolate) }}" 206 <nav-menu-item link="{{ makeLink('/metrics', isolate) }}"
205 anchor="metrics"></nav-menu-item> 207 anchor="metrics"></nav-menu-item>
206 <nav-menu-item link="{{ makeLink('/heap-snapshot', isolate) }}" 208 <nav-menu-item link="{{ makeLink('/heap-snapshot', isolate) }}"
207 anchor="heap snapshot"></nav-menu-item> 209 anchor="heap snapshot"></nav-menu-item>
208 <nav-menu-item link="{{ makeLink('/ports', isolate) }}" 210 <nav-menu-item link="{{ makeLink('/ports', isolate) }}"
209 anchor="ports"></nav-menu-item> 211 anchor="ports"></nav-menu-item>
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 [<a class="link" on-click="{{ goto }}" 450 [<a class="link" on-click="{{ goto }}"
449 _href="{{ gotoLink('vm-connect') }}">Connect to a different VM</a>] 451 _href="{{ gotoLink('vm-connect') }}">Connect to a different VM</a>]
450 <a class="boxclose" on-click="{{ closeItem }}">&times;</a> 452 <a class="boxclose" on-click="{{ closeItem }}">&times;</a>
451 </div> 453 </div>
452 </template> 454 </template>
453 </template> 455 </template>
454 </polymer-element> 456 </polymer-element>
455 457
456 458
457 <script type="application/dart" src="nav_bar.dart"></script> 459 <script type="application/dart" src="nav_bar.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/cpu_profile.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698