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

Unified Diff: runtime/observatory/lib/src/elements/logging.html

Issue 2299893003: Converted Observatory logging-page element (Closed)
Patch Set: Updated observatory_sources.gypi Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/lib/src/elements/logging.html
diff --git a/runtime/observatory/lib/src/elements/logging.html b/runtime/observatory/lib/src/elements/logging.html
deleted file mode 100644
index fc74304d09e1815f8d27e964c144be18ef0e5131..0000000000000000000000000000000000000000
--- a/runtime/observatory/lib/src/elements/logging.html
+++ /dev/null
@@ -1,72 +0,0 @@
-<link rel="import" href="../../../../packages/polymer/polymer.html">
-
-<polymer-element name="logging-page">
- <template>
- <link rel="stylesheet" href="css/shared.css">
- <style>
- .outlined {
- -webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
- -moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
- box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.75);
- margin: 4px;
- }
- .logItem {
- font: normal 14px consolas, courier, monospace;
- white-space: pre;
- line-height: 125%;
- width: 100%;
- }
- .FINEST {
- background-color: #FAFAFA;
- }
- .FINER {
- background-color: #ECEFF1;
- }
- .FINE {
- background-color: #EFEBE9;
- }
- .CONFIG {
- background-color: #FFF3E0;
- }
- .INFO {
- background-color: #F1F8E9;
- }
- .WARNING {
- background-color: #FFE0B2;
- }
- .SEVERE {
- background-color: #FFCCBC;
- }
- .SHOUT {
- background-color: #FFCDD2;
- }
- #log {
- height: 100%;
- width: 100%;
- overflow-y: auto;
- padding: 8px;
- }
- .fill {
- height: 80%;
- width: 100%;
- }
- </style>
- <nav-bar>
- <top-nav-menu></top-nav-menu>
- <vm-nav-menu vm="{{ isolate.vm }}"></vm-nav-menu>
- <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu>
- <nav-menu link="{{ makeLink('/logging', isolate) }}" anchor="logging" last="{{ true }}"></nav-menu>
- <nav-refresh callback="{{ clear }}" label="Clear"></nav-refresh>
- <nav-notify notifications="{{ app.notifications }}"></nav-notify>
- </nav-bar>
- <div id="page" class="content-centered-big">
- <span>Show messages with severity <select id="severityLevelSelector" value="{{ severityLevel }}"></select> and higher</span>
- <hr>
- <div class="flex-row fill">
- <div id="log" class="outlined"></div>
- </div>
- </div>
- </template>
-</polymer-element>
-
-<script type="application/dart" src="logging.dart"></script>
« no previous file with comments | « runtime/observatory/lib/src/elements/logging.dart ('k') | runtime/observatory/lib/src/elements/logging_list.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698