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

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

Issue 2180553002: Converted Observatory source-link & script-ref elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Removed references from other elements Created 4 years, 4 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"> 3 <link rel="import" href="eval_box.html">
4 <link rel="import" href="function_ref.html"> 4 <link rel="import" href="function_ref.html">
5 <link rel="import" href="isolate_summary.html"> 5 <link rel="import" href="isolate_summary.html">
6 <link rel="import" href="library_ref.html"> 6 <link rel="import" href="library_ref.html">
7 <link rel="import" href="nav_bar.html"> 7 <link rel="import" href="nav_bar.html">
8 8
9 <link rel="import" href="script_inset.html"> 9 <link rel="import" href="script_inset.html">
10 <link rel="import" href="script_ref.html">
11 10
12 <polymer-element name="isolate-view"> 11 <polymer-element name="isolate-view">
13 <template> 12 <template>
14 <link rel="stylesheet" href="css/shared.css"> 13 <link rel="stylesheet" href="css/shared.css">
15 <style> 14 <style>
16 .sourceInset { 15 .sourceInset {
17 padding-left: 15%; 16 padding-left: 15%;
18 padding-right: 15%; 17 padding-right: 15%;
19 } 18 }
20 .miniProfileChart { 19 .miniProfileChart {
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 <hr> 137 <hr>
139 <script-inset script="{{ rootLibrary.rootScript }}"> 138 <script-inset script="{{ rootLibrary.rootScript }}">
140 </script-inset> 139 </script-inset>
141 </div> 140 </div>
142 141
143 <view-footer></view-footer> 142 <view-footer></view-footer>
144 </template> 143 </template>
145 </polymer-element> 144 </polymer-element>
146 145
147 <script type="application/dart" src="isolate_view.dart"></script> 146 <script type="application/dart" src="isolate_view.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698