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

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

Issue 2167053002: Converted Observatory nav-notify element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed template ciclic references that were blocking initialization Created 4 years, 5 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="action_link.html"> 2 <link rel="import" href="action_link.html">
3 <link rel="import" href="cpu_profile.html"> 3 <link rel="import" href="cpu_profile.html">
4 <link rel="import" href="eval_box.html"> 4 <link rel="import" href="eval_box.html">
5 <link rel="import" href="eval_link.html"> 5 <link rel="import" href="eval_link.html">
6 <link rel="import" href="field_ref.html"> 6 <link rel="import" href="field_ref.html">
7 <link rel="import" href="function_ref.html"> 7 <link rel="import" href="function_ref.html">
8 <link rel="import" href="instance_ref.html"> 8 <link rel="import" href="instance_ref.html">
9 <link rel="import" href="library_ref.html"> 9 <link rel="import" href="library_ref.html">
10 <link rel="import" href="nav_bar.html"> 10 <link rel="import" href="nav_bar.html">
11 <link rel="import" href="observatory_element.html"> 11
12 <link rel="import" href="script_inset.html"> 12 <link rel="import" href="script_inset.html">
13 <link rel="import" href="script_ref.html"> 13 <link rel="import" href="script_ref.html">
14 14
15 <polymer-element name="class-view" extends="observatory-element"> 15 <polymer-element name="class-view">
16 <template> 16 <template>
17 <link rel="stylesheet" href="css/shared.css"> 17 <link rel="stylesheet" href="css/shared.css">
18 <nav-bar> 18 <nav-bar>
19 <top-nav-menu></top-nav-menu> 19 <top-nav-menu></top-nav-menu>
20 <vm-nav-menu vm="{{ cls.isolate.vm }}"></vm-nav-menu> 20 <vm-nav-menu vm="{{ cls.isolate.vm }}"></vm-nav-menu>
21 <isolate-nav-menu isolate="{{ cls.isolate }}"></isolate-nav-menu> 21 <isolate-nav-menu isolate="{{ cls.isolate }}"></isolate-nav-menu>
22 <library-nav-menu library="{{ cls.library }}"></library-nav-menu> 22 <library-nav-menu library="{{ cls.library }}"></library-nav-menu>
23 <class-nav-menu cls="{{ cls }}" last="{{ true }}"></class-nav-menu> 23 <class-nav-menu cls="{{ cls }}" last="{{ true }}"></class-nav-menu>
24 <nav-refresh callback="{{ refreshAllocationProfile }}" label="Refresh Allo cation Profile"></nav-refresh> 24 <nav-refresh callback="{{ refreshAllocationProfile }}" label="Refresh Allo cation Profile"></nav-refresh>
25 <nav-refresh callback="{{ refresh }}"></nav-refresh> 25 <nav-refresh callback="{{ refresh }}"></nav-refresh>
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 <hr> 278 <hr>
279 <source-inset location="{{ cls.location }}"> 279 <source-inset location="{{ cls.location }}">
280 </source-inset> 280 </source-inset>
281 </div> 281 </div>
282 282
283 <view-footer></view-footer> 283 <view-footer></view-footer>
284 </template> 284 </template>
285 </polymer-element> 285 </polymer-element>
286 286
287 <script type="application/dart" src="class_view.dart"></script> 287 <script type="application/dart" src="class_view.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/class_tree.html ('k') | runtime/observatory/lib/src/elements/code_ref.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698