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

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

Issue 1719313002: Add persistent handles to service protocol and Observatory UI (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 <nav-menu-item link="{{ makeLink('/profiler-table', isolate) }}" 200 <nav-menu-item link="{{ makeLink('/profiler-table', isolate) }}"
201 anchor="cpu profile (table)"></nav-menu-item> 201 anchor="cpu profile (table)"></nav-menu-item>
202 <nav-menu-item link="{{ makeLink('/allocation-profiler', isolate) }}" 202 <nav-menu-item link="{{ makeLink('/allocation-profiler', isolate) }}"
203 anchor="allocation profile"></nav-menu-item> 203 anchor="allocation profile"></nav-menu-item>
204 <nav-menu-item link="{{ makeLink('/heap-map', isolate) }}" 204 <nav-menu-item link="{{ makeLink('/heap-map', isolate) }}"
205 anchor="heap map"></nav-menu-item> 205 anchor="heap map"></nav-menu-item>
206 <nav-menu-item link="{{ makeLink('/metrics', isolate) }}" 206 <nav-menu-item link="{{ makeLink('/metrics', isolate) }}"
207 anchor="metrics"></nav-menu-item> 207 anchor="metrics"></nav-menu-item>
208 <nav-menu-item link="{{ makeLink('/heap-snapshot', isolate) }}" 208 <nav-menu-item link="{{ makeLink('/heap-snapshot', isolate) }}"
209 anchor="heap snapshot"></nav-menu-item> 209 anchor="heap snapshot"></nav-menu-item>
210 <nav-menu-item link="{{ makeLink('/persistent-handles', isolate) }}"
211 anchor="persistent handles"></nav-menu-item>
210 <nav-menu-item link="{{ makeLink('/ports', isolate) }}" 212 <nav-menu-item link="{{ makeLink('/ports', isolate) }}"
211 anchor="ports"></nav-menu-item> 213 anchor="ports"></nav-menu-item>
212 <nav-menu-item link="{{ makeLink('/logging', isolate) }}" 214 <nav-menu-item link="{{ makeLink('/logging', isolate) }}"
213 anchor="logging"></nav-menu-item> 215 anchor="logging"></nav-menu-item>
214 <content></content> 216 <content></content>
215 </nav-menu> 217 </nav-menu>
216 </template> 218 </template>
217 </polymer-element> 219 </polymer-element>
218 220
219 <polymer-element name="library-nav-menu" extends="observatory-element"> 221 <polymer-element name="library-nav-menu" extends="observatory-element">
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 [<a class="link" on-click="{{ goto }}" 452 [<a class="link" on-click="{{ goto }}"
451 _href="{{ gotoLink('vm-connect') }}">Connect to a different VM</a>] 453 _href="{{ gotoLink('vm-connect') }}">Connect to a different VM</a>]
452 <a class="boxclose" on-click="{{ closeItem }}">&times;</a> 454 <a class="boxclose" on-click="{{ closeItem }}">&times;</a>
453 </div> 455 </div>
454 </template> 456 </template>
455 </template> 457 </template>
456 </polymer-element> 458 </polymer-element>
457 459
458 460
459 <script type="application/dart" src="nav_bar.dart"></script> 461 <script type="application/dart" src="nav_bar.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698