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

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

Issue 1300853006: Functions are objects too! (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: update tests Created 5 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="class_ref.html"> 2 <link rel="import" href="class_ref.html">
3 <link rel="import" href="field_ref.html"> 3 <link rel="import" href="field_ref.html">
4 <link rel="import" href="function_ref.html"> 4 <link rel="import" href="function_ref.html">
5 <link rel="import" href="instance_ref.html"> 5 <link rel="import" href="instance_ref.html">
6 <link rel="import" href="observatory_element.html"> 6 <link rel="import" href="observatory_element.html">
7 <link rel="import" href="nav_bar.html"> 7 <link rel="import" href="nav_bar.html">
8 <link rel="import" href="object_common.html"> 8 <link rel="import" href="object_common.html">
9 <link rel="import" href="context_ref.html"> 9 <link rel="import" href="context_ref.html">
10 <link rel="import" href="view_footer.html"> 10 <link rel="import" href="view_footer.html">
11 11
12 <polymer-element name="context-view" extends="observatory-element"> 12 <polymer-element name="context-view" extends="observatory-element">
13 <template> 13 <template>
14 <link rel="stylesheet" href="css/shared.css"> 14 <link rel="stylesheet" href="css/shared.css">
15 <nav-bar> 15 <nav-bar>
16 <top-nav-menu></top-nav-menu> 16 <top-nav-menu></top-nav-menu>
17 <vm-nav-menu vm="{{ context.isolate.vm }}"></vm-nav-menu> 17 <vm-nav-menu vm="{{ context.isolate.vm }}"></vm-nav-menu>
18 <isolate-nav-menu isolate="{{ context.isolate }}"></isolate-nav-menu> 18 <isolate-nav-menu isolate="{{ context.isolate }}"></isolate-nav-menu>
19 <!-- TODO(turnidge): Add library nav menu here. --> 19 <!-- TODO(turnidge): Add library nav menu here. -->
20 <class-nav-menu cls="{{ context.clazz }}"></class-nav-menu> 20 <class-nav-menu cls="{{ context.clazz }}"></class-nav-menu>
21 <nav-menu link="." anchor="instance" last="{{ true }}"></nav-menu> 21 <nav-menu link="." anchor="instance" last="{{ true }}"></nav-menu>
22 <nav-refresh callback="{{ refresh }}"></nav-refresh> 22 <nav-refresh callback="{{ refresh }}"></nav-refresh>
23 </nav-bar> 23 </nav-bar>
24 24
25 <template if="{{ !context.isError }}"> 25 <template if="{{ !context.isError }}">
26 <div class="content"> 26 <div class="content">
27 <h1>instance of Context</h1> 27 <h1>instance of Context</h1>
28 28
29 <object-common object="{{ context }}"></object-common> 29 <object-common object="{{ context }}"></object-common>
30 <br>
30 31
31 <div class="memberList"> 32 <div class="memberList">
32 <div class="memberItem">&nbsp;</div>
33
34 <template if="{{ context.parentContext != null }}"> 33 <template if="{{ context.parentContext != null }}">
35 <div class="memberItem"> 34 <div class="memberItem">
36 <div class="memberName">parent context</div> 35 <div class="memberName">parent context</div>
37 <div class="memberValue"> 36 <div class="memberValue">
38 <any-service-ref ref="{{ context.parentContext }}"></any-service -ref> 37 <any-service-ref ref="{{ context.parentContext }}"></any-service -ref>
39 </div> 38 </div>
40 </div> 39 </div>
41 </template> 40 </template>
42 </div> 41 </div>
43 </div> 42 </div>
(...skipping 18 matching lines...) Expand all
62 </div> 61 </div>
63 </curly-block><br><br> 62 </curly-block><br><br>
64 </template> 63 </template>
65 </div> 64 </div>
66 </template> 65 </template>
67 <view-footer></view-footer> 66 <view-footer></view-footer>
68 </template> 67 </template>
69 </polymer-element> 68 </polymer-element>
70 69
71 <script type="application/dart" src="context_view.dart"></script> 70 <script type="application/dart" src="context_view.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/class_view.html ('k') | runtime/observatory/lib/src/elements/field_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698