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

Unified Diff: runtime/bin/vmservice/client/lib/src/observatory_elements/stack_frame.html

Issue 145323002: Post-meetup feature extravaganza. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: runtime/bin/vmservice/client/lib/src/observatory_elements/stack_frame.html
===================================================================
--- runtime/bin/vmservice/client/lib/src/observatory_elements/stack_frame.html (revision 0)
+++ runtime/bin/vmservice/client/lib/src/observatory_elements/stack_frame.html (working copy)
@@ -0,0 +1,33 @@
+<head>
+ <link rel="import" href="observatory_element.html">
+</head>
+<polymer-element name="stack-frame" extends="observatory-element">
+ <template>
+ <div class="row">
+ <div class="col-md-1"></div>
+ <div class="col-md-1">
+ #{{ frame['depth'] }}
+ </div>
+ <div class="col-md-9">
+ <function-ref app="{{ app }}" ref="{{ frame['function'] }}"></function-ref>
+ ( <script-ref app="{{ app }}" ref="{{ frame['script'] }}"></script-ref>:{{ frame['line'] }} )
+ </div>
+ <div class="col-md-1"></div>
+ </div>
+
+ <template repeat="{{ v in frame['vars'] }}">
+ <div class="row">
+ <div class="col-md-3"></div>
+ <div class="col-md-1">
+ {{ v['name'] }}
+ </div>
+ <div class="col-md-6">
+ <instance-ref app="{{ app }}" ref="{{ v['value'] }}"></instance-ref>
+ </div>
+ <div class="col-md-2"></div>
+ </div>
+ </template>
+
+ </template>
+ <script type="application/dart" src="stack_frame.dart"></script>
+</polymer-element>

Powered by Google App Engine
This is Rietveld 408576698