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

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

Issue 1150303004: Switch to using SourceLocation universally in service protocol. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: post merge Created 5 years, 6 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="function_ref.html"> 3 <link rel="import" href="function_ref.html">
4 <link rel="import" href="isolate_ref.html"> 4 <link rel="import" href="isolate_ref.html">
5 <link rel="import" href="observatory_element.html"> 5 <link rel="import" href="observatory_element.html">
6 <link rel="import" href="script_inset.html"> 6 <link rel="import" href="script_inset.html">
7 <link rel="import" href="script_ref.html"> 7 <link rel="import" href="script_ref.html">
8 <polymer-element name="isolate-summary" extends="observatory-element"> 8 <polymer-element name="isolate-summary" extends="observatory-element">
9 <template> 9 <template>
10 <link rel="stylesheet" href="css/shared.css"> 10 <link rel="stylesheet" href="css/shared.css">
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 <template if="{{ isolate.pauseEvent.kind == 'PauseInterrupted' || 76 <template if="{{ isolate.pauseEvent.kind == 'PauseInterrupted' ||
77 isolate.pauseEvent.kind == 'PauseBreakpoint' || 77 isolate.pauseEvent.kind == 'PauseBreakpoint' ||
78 isolate.pauseEvent.kind == 'PauseException' }}"> 78 isolate.pauseEvent.kind == 'PauseException' }}">
79 <template if="{{ isolate.pauseEvent.breakpoint != null }}"> 79 <template if="{{ isolate.pauseEvent.breakpoint != null }}">
80 by breakpoint 80 by breakpoint
81 </template> 81 </template>
82 <template if="{{ isolate.pauseEvent.kind == 'PauseException' }}"> 82 <template if="{{ isolate.pauseEvent.kind == 'PauseException' }}">
83 by exception 83 by exception
84 </template> 84 </template>
85 at 85 at
86 <function-ref ref="{{ isolate.topFrame['function'] }}"> 86 <function-ref ref="{{ isolate.topFrame.function }}">
87 </function-ref> 87 </function-ref>
88 (<script-ref ref="{{ isolate.topFrame['script'] }}" 88 (<source-link location="{{ isolate.topFrame.location }}">
89 pos="{{ isolate.topFrame['tokenPos'] }}"></script-ref>) 89 </source-link>)
90 </template> 90 </template>
91 </template> 91 </template>
92 92
93 <template if="{{ isolate.running }}"> 93 <template if="{{ isolate.running }}">
94 at 94 at
95 <function-ref ref="{{ isolate.topFrame['function'] }}"> 95 <function-ref ref="{{ isolate.topFrame.function }}">
96 </function-ref> 96 </function-ref>
97 (<script-ref ref="{{ isolate.topFrame['script'] }}" 97 (<source-link location="{{ isolate.topFrame.location }}"></source-link>)
98 pos="{{ isolate.topFrame['tokenPos'] }}"></script-ref>)
99 </template> 98 </template>
100 99
101 </template> 100 </template>
102 </polymer-element> 101 </polymer-element>
103 102
104 <polymer-element name="isolate-shared-summary" extends="observatory-element"> 103 <polymer-element name="isolate-shared-summary" extends="observatory-element">
105 <template> 104 <template>
106 <style> 105 <style>
107 .errorBox { 106 .errorBox {
108 background-color: #f5f5f5; 107 background-color: #f5f5f5;
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 </template> 202 </template>
204 </polymer-element> 203 </polymer-element>
205 204
206 <polymer-element name="isolate-counter-chart" extends="observatory-element"> 205 <polymer-element name="isolate-counter-chart" extends="observatory-element">
207 <template> 206 <template>
208 <div id="counterPieChart" style="height: 200px"></div> 207 <div id="counterPieChart" style="height: 200px"></div>
209 </template> 208 </template>
210 </polymer-element> 209 </polymer-element>
211 210
212 <script type="application/dart" src="isolate_summary.dart"></script> 211 <script type="application/dart" src="isolate_summary.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/function_view.html ('k') | runtime/observatory/lib/src/elements/isolate_view.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698