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

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

Issue 2277543004: Converted Observatory script-inset & source-inset elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Converted Observatory eval-box element Created 4 years, 3 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="eval_box.html">
4 <link rel="import" href="isolate_summary.html"> 3 <link rel="import" href="isolate_summary.html">
5 <link rel="import" href="script_inset.html">
6 4
7 <polymer-element name="isolate-view"> 5 <polymer-element name="isolate-view">
8 <template> 6 <template>
9 <link rel="stylesheet" href="css/shared.css"> 7 <link rel="stylesheet" href="css/shared.css">
10 <style> 8 <style>
11 .sourceInset { 9 .sourceInset {
12 padding-left: 15%; 10 padding-left: 15%;
13 padding-right: 15%; 11 padding-right: 15%;
14 } 12 }
15 .miniProfileChart { 13 .miniProfileChart {
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 <library-ref ref="{{ lib }}"></library-ref> 117 <library-ref ref="{{ lib }}"></library-ref>
120 </div> 118 </div>
121 </div> 119 </div>
122 </template> 120 </template>
123 </div> 121 </div>
124 </curly-block> 122 </curly-block>
125 </div> 123 </div>
126 124
127 <div class="content-centered"> 125 <div class="content-centered">
128 <hr> 126 <hr>
129 <eval-box callback="{{ evaluate }}"></eval-box> 127 <eval-box context="{{ isolate.rootLibrary }}"></eval-box>
130 </div> 128 </div>
131 129
132 <div class="content-centered"> 130 <div class="content-centered">
133 <hr> 131 <hr>
134 <script-inset script="{{ rootLibrary.rootScript }}"> 132 <script-inset script="{{ rootLibrary.rootScript }}">
135 </script-inset> 133 </script-inset>
136 </div> 134 </div>
137 135
138 <view-footer></view-footer> 136 <view-footer></view-footer>
139 </template> 137 </template>
140 </polymer-element> 138 </polymer-element>
141 139
142 <script type="application/dart" src="isolate_view.dart"></script> 140 <script type="application/dart" src="isolate_view.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698