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

Side by Side Diff: runtime/observatory/lib/src/elements/nav_bar.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="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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
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="{{ '/debugger' + isolate.link }}" 205 <nav-menu-item link="{{ '/debugger' + isolate.link }}"
206 anchor="debugger"></nav-menu-item> 206 anchor="debugger"></nav-menu-item>
207 <nav-menu-item link="{{ isolate.relativeLink('profile') }}" 207 <nav-menu-item link="{{ '/profiler' + isolate.link }}"
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="{{ '/allocation-profiler' + isolate.link }}"
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="{{ '/heap-map' + isolate.link }}"
212 anchor="heap map"></nav-menu-item> 212 anchor="heap map"></nav-menu-item>
213 <nav-menu-item link="{{ isolate.relativeLink('debug/breakpoints') }}"
214 anchor="breakpoints"></nav-menu-item>
215 <content></content> 213 <content></content>
216 </nav-menu> 214 </nav-menu>
217 </template> 215 </template>
218 </polymer-element> 216 </polymer-element>
219 217
220 <polymer-element name="library-nav-menu" extends="observatory-element"> 218 <polymer-element name="library-nav-menu" extends="observatory-element">
221 <template> 219 <template>
222 <nav-menu link="{{ library.link }}" 220 <nav-menu link="{{ library.link }}"
223 anchor="{{ library.name }}" last="{{ last }}"> 221 anchor="{{ library.name }}" last="{{ last }}">
224 <content></content> 222 <content></content>
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 Disconnected from VM 346 Disconnected from VM
349 <br><br> 347 <br><br>
350 <a class="boxclose" on-click="{{ closeItem }}">&times;</a> 348 <a class="boxclose" on-click="{{ closeItem }}">&times;</a>
351 </div> 349 </div>
352 </template> 350 </template>
353 </template> 351 </template>
354 </polymer-element> 352 </polymer-element>
355 353
356 354
357 <script type="application/dart" src="nav_bar.dart"></script> 355 <script type="application/dart" src="nav_bar.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/library_view.dart ('k') | runtime/observatory/lib/src/elements/object_common.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698