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

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

Issue 1160873002: Sundry service protocol cleanups before version 1.0. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: pre commit 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="function_ref.html"> 2 <link rel="import" href="function_ref.html">
3 <link rel="import" href="nav_bar.html"> 3 <link rel="import" href="nav_bar.html">
4 <link rel="import" href="eval_link.html"> 4 <link rel="import" href="eval_link.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 8
9 <!-- TODO(turnidge): Use core-icon once core_elements work properly in 9 <!-- TODO(turnidge): Use core-icon once core_elements work properly in
10 devtools --> 10 devtools -->
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 .flex-item-vars { 234 .flex-item-vars {
235 flex-grow: 5; 235 flex-grow: 5;
236 flex-shrink: 0; 236 flex-shrink: 0;
237 flex-basis: 225px; 237 flex-basis: 225px;
238 } 238 }
239 </style> 239 </style>
240 <div id="frameOuter" class="frameOuter"> 240 <div id="frameOuter" class="frameOuter">
241 <a on-click="{{ toggleExpand }}"> 241 <a on-click="{{ toggleExpand }}">
242 <div class="frameSummary"> 242 <div class="frameSummary">
243 <div class="frameSummaryText"> 243 <div class="frameSummaryText">
244 <div class="frameId"><b>frame {{ frame['depth'] }}</b></div> 244 <div class="frameId"><b>frame {{ frame['index'] }}</b></div>
245 <function-ref ref="{{ frame['function'] }}"></function-ref> 245 <function-ref ref="{{ frame['function'] }}"></function-ref>
246 ( <script-ref ref="{{ frame['script'] }}" 246 ( <script-ref ref="{{ frame['script'] }}"
247 pos="{{ frame['tokenPos'] }}"> 247 pos="{{ frame['tokenPos'] }}">
248 </script-ref> ) 248 </script-ref> )
249 </div> 249 </div>
250 <template if="{{ !expanded }}"> 250 <template if="{{ !expanded }}">
251 <div class="frameExpander"> 251 <div class="frameExpander">
252 <icon-expand-more></icon-expand-more> 252 <icon-expand-more></icon-expand-more>
253 </div> 253 </div>
254 </template> 254 </template>
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 .flex-item-vars { 348 .flex-item-vars {
349 flex-grow: 5; 349 flex-grow: 5;
350 flex-shrink: 0; 350 flex-shrink: 0;
351 flex-basis: 225px; 351 flex-basis: 225px;
352 } 352 }
353 </style> 353 </style>
354 <div id="messageOuter" class="messageOuter"> 354 <div id="messageOuter" class="messageOuter">
355 <a on-click="{{ toggleExpand }}"> 355 <a on-click="{{ toggleExpand }}">
356 <div class="messageSummary"> 356 <div class="messageSummary">
357 <div class="messageSummaryText"> 357 <div class="messageSummaryText">
358 <div class="messageId"><b>message {{ message['depth'] }}</b></div> 358 <div class="messageId"><b>message {{ message['index'] }}</b></div>
359 <function-ref ref="{{ message['handlerFunction'] }}"></function-ref> 359 <function-ref ref="{{ message['handlerFunction'] }}"></function-ref>
360 ( <script-ref ref="{{ message['handlerScript'] }}" 360 ( <script-ref ref="{{ message['handlerScript'] }}"
361 pos="{{ message['handlerTokenPos'] }}"> 361 pos="{{ message['handlerTokenPos'] }}">
362 </script-ref> ) 362 </script-ref> )
363 </div> 363 </div>
364 <template if="{{ !expanded }}"> 364 <template if="{{ !expanded }}">
365 <div class="messageExpander"> 365 <div class="messageExpander">
366 <icon-expand-more></icon-expand-more> 366 <icon-expand-more></icon-expand-more>
367 </div> 367 </div>
368 </template> 368 </template>
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 margin: 20px; 446 margin: 20px;
447 font: 400 16px consolas, courier, monospace; 447 font: 400 16px consolas, courier, monospace;
448 width: 95%; 448 width: 95%;
449 } 449 }
450 </style> 450 </style>
451 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus > 451 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus >
452 </template> 452 </template>
453 </polymer-element> 453 </polymer-element>
454 454
455 <script type="application/dart" src="debugger.dart"></script> 455 <script type="application/dart" src="debugger.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/debugger.dart ('k') | runtime/observatory/lib/src/elements/field_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698