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

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

Issue 584293002: Begin implementing a debugger page in Observatory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 years, 2 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="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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 <nav-menu link="/vm" anchor="Observatory" last="{{ last }}"> 195 <nav-menu link="/vm" anchor="Observatory" last="{{ last }}">
196 <nav-menu-item link="/vm-connect/" anchor="Connect to a different VM"></na v-menu-item> 196 <nav-menu-item link="/vm-connect/" anchor="Connect to a different VM"></na v-menu-item>
197 <content></content> 197 <content></content>
198 </nav-menu> 198 </nav-menu>
199 </template> 199 </template>
200 </polymer-element> 200 </polymer-element>
201 201
202 <polymer-element name="isolate-nav-menu" extends="observatory-element"> 202 <polymer-element name="isolate-nav-menu" extends="observatory-element">
203 <template> 203 <template>
204 <nav-menu link="{{ hashLinkWorkaround }}" anchor="{{ isolate.name }}" last=" {{ last }}"> 204 <nav-menu link="{{ hashLinkWorkaround }}" anchor="{{ isolate.name }}" last=" {{ last }}">
205 <nav-menu-item link="{{ isolate.relativeLink('stacktrace') }}" 205 <nav-menu-item link="{{ '/debugger' + isolate.link }}"
206 anchor="stack trace"></nav-menu-item> 206 anchor="debugger"></nav-menu-item>
207 <nav-menu-item link="{{ isolate.relativeLink('profile') }}" 207 <nav-menu-item link="{{ isolate.relativeLink('profile') }}"
208 anchor="cpu profile"></nav-menu-item> 208 anchor="cpu profile"></nav-menu-item>
209 <nav-menu-item link="{{ isolate.relativeLink('allocationprofile') }}" 209 <nav-menu-item link="{{ isolate.relativeLink('allocationprofile') }}"
210 anchor="allocation profile"></nav-menu-item> 210 anchor="allocation profile"></nav-menu-item>
211 <nav-menu-item link="{{ isolate.relativeLink('heapmap') }}" 211 <nav-menu-item link="{{ isolate.relativeLink('heapmap') }}"
212 anchor="heap map"></nav-menu-item> 212 anchor="heap map"></nav-menu-item>
213 <nav-menu-item link="{{ isolate.relativeLink('debug/breakpoints') }}" 213 <nav-menu-item link="{{ isolate.relativeLink('debug/breakpoints') }}"
214 anchor="breakpoints"></nav-menu-item> 214 anchor="breakpoints"></nav-menu-item>
215 <content></content> 215 <content></content>
216 </nav-menu> 216 </nav-menu>
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 Disconnected from VM 348 Disconnected from VM
349 <br><br> 349 <br><br>
350 <a class="boxclose" on-click="{{ closeItem }}">&times;</a> 350 <a class="boxclose" on-click="{{ closeItem }}">&times;</a>
351 </div> 351 </div>
352 </template> 352 </template>
353 </template> 353 </template>
354 </polymer-element> 354 </polymer-element>
355 355
356 356
357 <script type="application/dart" src="nav_bar.dart"></script> 357 <script type="application/dart" src="nav_bar.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698