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

Side by Side Diff: runtime/observatory/lib/src/elements/debugger.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="function_ref.html"> 2 <link rel="import" href="function_ref.html">
3 <link rel="import" href="nav_bar.html"> 3 <link rel="import" href="nav_bar.html">
4 <link rel="import" href="observatory_element.html"> 4 <link rel="import" href="observatory_element.html">
5 <link rel="import" href="script_inset.html"> 5 <link rel="import" href="script_inset.html">
6 <link rel="import" href="script_ref.html"> 6 <link rel="import" href="script_ref.html">
7 7
8 <!-- TODO(turnidge): Use core-icon once core_elements work properly in 8 <!-- TODO(turnidge): Use core-icon once core_elements work properly in
9 devtools --> 9 devtools -->
10 <polymer-element name="icon-expand-less" noscript> 10 <polymer-element name="icon-expand-less" noscript>
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 flex: 1 1 auto; 47 flex: 1 1 auto;
48 overflow-y: auto; 48 overflow-y: auto;
49 } 49 }
50 .commandline { 50 .commandline {
51 flex: 0 0 auto; 51 flex: 0 0 auto;
52 } 52 }
53 </style> 53 </style>
54 54
55 <div class="container"> 55 <div class="container">
56 <nav-bar> 56 <nav-bar>
57 » <top-nav-menu last="{{ true }}"></top-nav-menu> 57 <top-nav-menu></top-nav-menu>
58 » <isolate-nav-menu isolate="{{ isolate }}" last="{{ true }}"> 58 <isolate-nav-menu isolate="{{ isolate }}">
59 </isolate-nav-menu> 59 </isolate-nav-menu>
60 <nav-menu link="{{ '/debugger' + isolate.link) }}" anchor="debugger" las t="{{ true }}"></nav-menu>
60 <nav-control></nav-control> 61 <nav-control></nav-control>
61 </nav-bar> 62 </nav-bar>
62 63
63 <div id="stack" class="stack"> 64 <div id="stack" class="stack">
64 <debugger-stack isolate="{{ isolate }}"></debugger-stack> 65 <debugger-stack isolate="{{ isolate }}"></debugger-stack>
65 </div> 66 </div>
66 <!-- 67 <!--
67 <core-splitter direction="up" allowOverflow=true></core-splitter> 68 <core-splitter direction="up" allowOverflow=true></core-splitter>
68 <div class="console"> 69 <div class="console">
69 <debugger-console isolate="{{ isolate }}"></debugger-console> 70 <debugger-console isolate="{{ isolate }}"></debugger-console>
70 </div> 71 </div>
71 <div class="commandline"> 72 <div class="commandline">
72 <debugger-input isolate="{{ isolate }}"></debugger-input> 73 <debugger-input isolate="{{ isolate }}"></debugger-input>
73 </div> 74 </div>
74 --> 75 -->
75 </div> 76 </div>
76 </template> 77 </template>
77 </polymer-element> 78 </polymer-element>
78 79
79 <polymer-element name="debugger-stack" extends="observatory-element"> 80 <polymer-element name="debugger-stack" extends="observatory-element">
80 <template> 81 <template>
81 <link rel="stylesheet" href="css/shared.css"> 82 <link rel="stylesheet" href="css/shared.css">
82 <template if="{{ stack == null }}"> 83 <template if="{{ stack == null }}">
83 Loading stack frames 84 Loading stack frames
84 </template> 85 </template>
85 <template if="{{ stack != null }}"> 86 <template if="{{ stack != null }}">
86 <ul class="list-group"> 87 <ul class="list-group">
87 <template repeat="{{ frame in stack['members'] }}"> 88 <template repeat="{{ frame in stack['frames'] }}">
88 <li class="list-group-item"> 89 <li class="list-group-item">
89 <debugger-frame frame="{{ frame }}" 90 <debugger-frame frame="{{ frame }}"
90 expand="{{ frame['depth'] == activeFrame }}"> 91 expand="{{ frame['depth'] == activeFrame }}">
91 </debugger-frame> 92 </debugger-frame>
92 </li> 93 </li>
93 </template> 94 </template>
94 </ul> 95 </ul>
95 </template> 96 </template>
96 </template> 97 </template>
97 </polymer-element> 98 </polymer-element>
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 .textBox { 218 .textBox {
218 font: 400 16px 'Montserrat', sans-serif; 219 font: 400 16px 'Montserrat', sans-serif;
219 width: 100%; 220 width: 100%;
220 } 221 }
221 </style> 222 </style>
222 <input id="textBox" class="textBox" type="text" value="{{ text }}"> 223 <input id="textBox" class="textBox" type="text" value="{{ text }}">
223 </template> 224 </template>
224 </polymer-element> 225 </polymer-element>
225 226
226 <script type="application/dart" src="debugger.dart"></script> 227 <script type="application/dart" src="debugger.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/debugger.dart ('k') | runtime/observatory/lib/src/elements/heap_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698