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

Side by Side Diff: runtime/observatory/lib/src/elements/isolate_view.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="curly_block.html"> 3 <link rel="import" href="curly_block.html">
4 <link rel="import" href="eval_box.html"> 4 <link rel="import" href="eval_box.html">
5 <link rel="import" href="function_ref.html"> 5 <link rel="import" href="function_ref.html">
6 <link rel="import" href="isolate_summary.html"> 6 <link rel="import" href="isolate_summary.html">
7 <link rel="import" href="library_ref.html"> 7 <link rel="import" href="library_ref.html">
8 <link rel="import" href="nav_bar.html"> 8 <link rel="import" href="nav_bar.html">
9 <link rel="import" href="observatory_element.html"> 9 <link rel="import" href="observatory_element.html">
10 <link rel="import" href="script_inset.html"> 10 <link rel="import" href="script_inset.html">
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 <isolate-location isolate="{{ isolate }}"></isolate-location> 47 <isolate-location isolate="{{ isolate }}"></isolate-location>
48 </div> 48 </div>
49 <div class="flex-item-10-percent"> 49 <div class="flex-item-10-percent">
50 </div> 50 </div>
51 </div> 51 </div>
52 <br> 52 <br>
53 53
54 <template if="{{ isolate.topFrame != null }}"> 54 <template if="{{ isolate.topFrame != null }}">
55 <br> 55 <br>
56 <div class="content-centered-big"> 56 <div class="content-centered-big">
57 <script-inset script="{{ isolate.topFrame['script'] }}" 57 <source-inset location="{{ isolate.topFrame.function.location }}"
58 currentPos="{{ isolate.topFrame['tokenPos'] }}" 58 currentPos="{{ isolate.topFrame.location.tokenPos }}"
59 height="200px"> 59 height="200px">
60 </script-inset> 60 </source-inset>
61 </div> 61 </div>
62 </template> 62 </template>
63 63
64 <div class="flex-row"> 64 <div class="flex-row">
65 <div class="flex-item-20-percent"></div> 65 <div class="flex-item-20-percent"></div>
66 <div class="flex-item-60-percent"><hr></div> 66 <div class="flex-item-60-percent"><hr></div>
67 <div class="flex-item-20-percent"></div> 67 <div class="flex-item-20-percent"></div>
68 </div> 68 </div>
69 69
70 <br> 70 <br>
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 <hr> 138 <hr>
139 139
140 <div class="content"> 140 <div class="content">
141 <eval-box callback="{{ evaluate }}"></eval-box> 141 <eval-box callback="{{ evaluate }}"></eval-box>
142 </div> 142 </div>
143 <view-footer></view-footer> 143 <view-footer></view-footer>
144 </template> 144 </template>
145 </polymer-element> 145 </polymer-element>
146 146
147 <script type="application/dart" src="isolate_view.dart"></script> 147 <script type="application/dart" src="isolate_view.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/isolate_view.dart ('k') | runtime/observatory/lib/src/elements/observatory_element.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698