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

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

Issue 897193002: Finish moving service protocol to json rpc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 5 years, 10 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 | Annotate | Revision Log
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="observatory_element.html"> 4 <link rel="import" href="observatory_element.html">
5 <link rel="import" href="script_inset.html"> 5 <link rel="import" href="script_inset.html">
6 <link rel="import" href="script_ref.html"> 6 <link rel="import" href="script_ref.html">
7 7
8 <!-- TODO(turnidge): Use core-icon once core_elements work properly in 8 <!-- TODO(turnidge): Use core-icon once core_elements work properly in
9 devtools --> 9 devtools -->
10 <polymer-element name="icon-expand-less" noscript> 10 <polymer-element name="icon-expand-less" noscript>
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 .commandline { 50 .commandline {
51 flex: 0 0 auto; 51 flex: 0 0 auto;
52 } 52 }
53 </style> 53 </style>
54 54
55 <div class="container"> 55 <div class="container">
56 <nav-bar> 56 <nav-bar>
57 <top-nav-menu></top-nav-menu> 57 <top-nav-menu></top-nav-menu>
58 <isolate-nav-menu isolate="{{ isolate }}"> 58 <isolate-nav-menu isolate="{{ isolate }}">
59 </isolate-nav-menu> 59 </isolate-nav-menu>
60 <nav-menu link="{{ '/debugger' + isolate.link) }}" anchor="debugger" las t="{{ true }}"></nav-menu> 60 <nav-menu link="{{ makeLink('/debugger', isolate) }}" anchor="debugger" last="{{ true }}"></nav-menu>
61 <nav-control></nav-control> 61 <nav-control></nav-control>
62 </nav-bar> 62 </nav-bar>
63 63
64 <div id="stack" class="stack"> 64 <div id="stack" class="stack">
65 <debugger-stack isolate="{{ isolate }}"></debugger-stack> 65 <debugger-stack isolate="{{ isolate }}"></debugger-stack>
66 </div> 66 </div>
67 <!-- 67 <!--
68 <core-splitter direction="up" allowOverflow=true></core-splitter> 68 <core-splitter direction="up" allowOverflow=true></core-splitter>
69 <div class="console"> 69 <div class="console">
70 <debugger-console isolate="{{ isolate }}"></debugger-console> 70 <debugger-console isolate="{{ isolate }}"></debugger-console>
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 .textBox { 218 .textBox {
219 font: 400 16px 'Montserrat', sans-serif; 219 font: 400 16px 'Montserrat', sans-serif;
220 width: 100%; 220 width: 100%;
221 } 221 }
222 </style> 222 </style>
223 <input id="textBox" class="textBox" type="text" value="{{ text }}"> 223 <input id="textBox" class="textBox" type="text" value="{{ text }}">
224 </template> 224 </template>
225 </polymer-element> 225 </polymer-element>
226 226
227 <script type="application/dart" src="debugger.dart"></script> 227 <script type="application/dart" src="debugger.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/cpu_profile.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