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

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

Issue 2161363002: Refactoring of nav-notify (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Removed duplicated nav-notify tag 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="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="eval_link.html"> 4 <link rel="import" href="eval_link.html">
5 <link rel="import" href="observatory_element.html"> 5 <link rel="import" href="observatory_element.html">
6 <link rel="import" href="script_inset.html"> 6 <link rel="import" href="script_inset.html">
7 <link rel="import" href="script_ref.html"> 7 <link rel="import" href="script_ref.html">
8 8
9 <!-- TODO(turnidge): Use core-icon once core_elements work properly in 9 <!-- TODO(turnidge): Use core-icon once core_elements work properly in
10 devtools --> 10 devtools -->
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 flex: 1 1 auto; 102 flex: 1 1 auto;
103 overflow-x: auto; 103 overflow-x: auto;
104 overflow-y: auto; 104 overflow-y: auto;
105 } 105 }
106 .commandline { 106 .commandline {
107 flex: 0 0 auto; 107 flex: 0 0 auto;
108 } 108 }
109 </style> 109 </style>
110 110
111 <div class="container"> 111 <div class="container">
112 <nav-bar id="navbarDiv" notifyOnPause="{{ false }}"> 112 <nav-bar id="navbarDiv" >
113 <top-nav-menu></top-nav-menu> 113 <top-nav-menu></top-nav-menu>
114 <vm-nav-menu vm="{{ isolate.vm }}"></vm-nav-menu> 114 <vm-nav-menu vm="{{ isolate.vm }}"></vm-nav-menu>
115 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu> 115 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu>
116 <nav-menu link="{{ makeLink('/debugger', isolate) }}" anchor="debugger" last="{{ true }}"></nav-menu> 116 <nav-menu link="{{ makeLink('/debugger', isolate) }}" anchor="debugger" last="{{ true }}"></nav-menu>
117 <nav-notify notifications="{{ app.notifications }}"
118 notifyOnPause="{{ false }}"></nav-notify>
117 </nav-bar> 119 </nav-bar>
118 <div id="stackDiv" class="stack"> 120 <div id="stackDiv" class="stack">
119 <debugger-stack id="stackElement" isolate="{{ isolate }}"></debugger-sta ck> 121 <debugger-stack id="stackElement" isolate="{{ isolate }}"></debugger-sta ck>
120 </div> 122 </div>
121 <!-- 123 <!--
122 <core-splitter direction="up" allowOverflow=true></core-splitter> 124 <core-splitter direction="up" allowOverflow=true></core-splitter>
123 --> 125 -->
124 <div id="splitterDiv"><hr class="splitter"></div> 126 <div id="splitterDiv"><hr class="splitter"></div>
125 <div id="consoleDiv" class="console"> 127 <div id="consoleDiv" class="console">
126 <debugger-console id="console" isolate="{{ isolate }}"></debugger-consol e> 128 <debugger-console id="console" isolate="{{ isolate }}"></debugger-consol e>
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 <div class="container"> 474 <div class="container">
473 <template if="{{ modalPrompt != null }}"> 475 <template if="{{ modalPrompt != null }}">
474 <div class="modalPrompt">{{ modalPrompt }}</div> 476 <div class="modalPrompt">{{ modalPrompt }}</div>
475 </template> 477 </template>
476 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofoc us> 478 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofoc us>
477 </div> 479 </div>
478 </template> 480 </template>
479 </polymer-element> 481 </polymer-element>
480 482
481 <script type="application/dart" src="debugger.dart"></script> 483 <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/error_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698