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

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

Issue 2176103002: Removed Dead Code (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Removed reference to delete file 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="code_ref.html"> 2 <link rel="import" href="code_ref.html">
3 <link rel="import" href="function_ref.html"> 3 <link rel="import" href="function_ref.html">
4 4
5 <link rel="import" href="sliding_checkbox.html">
6
7 <polymer-element name="logging-page"> 5 <polymer-element name="logging-page">
8 <template> 6 <template>
9 <link rel="stylesheet" href="css/shared.css"> 7 <link rel="stylesheet" href="css/shared.css">
10 <style> 8 <style>
11 .outlined { 9 .outlined {
12 -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); 10 -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
13 -moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); 11 -moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
14 box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75); 12 box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
15 margin: 4px; 13 margin: 4px;
16 } 14 }
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 <span>Show messages with severity <select id="severityLevelSelector" value ="{{ severityLevel }}"></select> and higher</span> 65 <span>Show messages with severity <select id="severityLevelSelector" value ="{{ severityLevel }}"></select> and higher</span>
68 <hr> 66 <hr>
69 <div class="flex-row fill"> 67 <div class="flex-row fill">
70 <div id="log" class="outlined"></div> 68 <div id="log" class="outlined"></div>
71 </div> 69 </div>
72 </div> 70 </div>
73 </template> 71 </template>
74 </polymer-element> 72 </polymer-element>
75 73
76 <script type="application/dart" src="logging.dart"></script> 74 <script type="application/dart" src="logging.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/cpu_profile.html ('k') | runtime/observatory/lib/src/elements/sliding_checkbox.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698