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

Side by Side Diff: runtime/observatory/lib/src/elements/script_inset.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="observatory_element.html"> 2 <link rel="import" href="observatory_element.html">
3 3
4 <polymer-element name="script-inset" extends="observatory-element"> 4 <polymer-element name="script-inset" extends="observatory-element">
5 <template> 5 <template>
6 <style> 6 <style>
7 .sourceInset { 7 .sourceInset {
8 } 8 }
9 .sourceTable { 9 .sourceTable {
10 display: table; 10 display: table;
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 background-color: #cac; 72 background-color: #cac;
73 } 73 }
74 .resolvedBreakpoint { 74 .resolvedBreakpoint {
75 color: white; 75 color: white;
76 background-color: #e66; 76 background-color: #e66;
77 } 77 }
78 </style> 78 </style>
79 </template> 79 </template>
80 </polymer-element> 80 </polymer-element>
81 81
82
83 <polymer-element name="source-inset">
84 <template>
85 <template if="{{ location != null }}">
86 <script-inset script="{{ location.script }}"
87 startPos="{{ location.tokenPos }}"
88 endPos="{{ location.endTokenPos }}"
89 height="{{ height }}"
90 currentPos="{{ currentPos }}"
91 inDebuggerContext="{{ inDebuggerContext }}"
92 variables="{{ variables }}">
93 </script-inset>
94 </template>
95 </template>
96 </polymer-element>
97
82 <script type="application/dart" src="script_inset.dart"></script> 98 <script type="application/dart" src="script_inset.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/script_inset.dart ('k') | runtime/observatory/lib/src/elements/script_ref.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698