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

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

Issue 1295693002: Add ObjectPool tag for external labels. Use LoadExternalLabel for native calls... (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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
« no previous file with comments | « runtime/observatory/lib/src/elements/objectpool_view.dart ('k') | runtime/vm/assembler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="error_view.html"> 3 <link rel="import" href="error_view.html">
4 <link rel="import" href="field_ref.html"> 4 <link rel="import" href="field_ref.html">
5 <link rel="import" href="function_ref.html"> 5 <link rel="import" href="function_ref.html">
6 <link rel="import" href="inbound_reference.html"> 6 <link rel="import" href="inbound_reference.html">
7 <link rel="import" href="instance_ref.html"> 7 <link rel="import" href="instance_ref.html">
8 <link rel="import" href="observatory_element.html"> 8 <link rel="import" href="observatory_element.html">
9 <link rel="import" href="object_common.html"> 9 <link rel="import" href="object_common.html">
10 <link rel="import" href="nav_bar.html"> 10 <link rel="import" href="nav_bar.html">
(...skipping 19 matching lines...) Expand all
30 <div class="memberList"> 30 <div class="memberList">
31 <template repeat="{{ index in pool.entries.asMap().keys }}"> 31 <template repeat="{{ index in pool.entries.asMap().keys }}">
32 <div class="memberItem"> 32 <div class="memberItem">
33 <div class="memberName">[{{ index }}]</div> 33 <div class="memberName">[{{ index }}]</div>
34 <div class="memberValue"> 34 <div class="memberValue">
35 <template if="{{ isServiceObject(pool.entries[index]) }}"> 35 <template if="{{ isServiceObject(pool.entries[index]) }}">
36 <any-service-ref ref="{{ pool.entries[index] }}"> 36 <any-service-ref ref="{{ pool.entries[index] }}">
37 </any-service-ref> 37 </any-service-ref>
38 </template> 38 </template>
39 <template if="{{ !isServiceObject(pool.entries[index]) }}"> 39 <template if="{{ !isServiceObject(pool.entries[index]) }}">
40 0x{{ pool.entries[index].toRadixString(16) }} 40 {{ pool.entries[index] }}
41 <template if="{{ annotatedEntries != null && annotatedEntries[in dex] != null }}"> 41 <template if="{{ annotatedEntries != null && annotatedEntries[in dex] != null }}">
42 (<any-service-ref ref="{{ annotatedEntries[index] }}"></any-se rvice-ref>) 42 (<any-service-ref ref="{{ annotatedEntries[index] }}"></any-se rvice-ref>)
43 </template> 43 </template>
44 </template> 44 </template>
45 </div> 45 </div>
46 </div> 46 </div>
47 </template> 47 </template>
48 </div> 48 </div>
49 49
50 </div> 50 </div>
51 51
52 <hr> 52 <hr>
53 <view-footer></view-footer> 53 <view-footer></view-footer>
54 </template> 54 </template>
55 </polymer-element> 55 </polymer-element>
56 56
57 <script type="application/dart" src="objectpool_view.dart"></script> 57 <script type="application/dart" src="objectpool_view.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/objectpool_view.dart ('k') | runtime/vm/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698