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

Unified Diff: runtime/observatory/web/timeline.html

Issue 1406413006: Timeline service protocol support with Observatory UI (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « runtime/observatory/web/third_party/README.md ('k') | runtime/observatory/web/timeline.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/web/timeline.html
diff --git a/runtime/observatory/web/timeline.html b/runtime/observatory/web/timeline.html
new file mode 100644
index 0000000000000000000000000000000000000000..ebcc46e37062b65e8ebf5bdc40ecae9051653358
--- /dev/null
+++ b/runtime/observatory/web/timeline.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html style="height: 100%; width: 100%">
+<head>
+ <meta charset="utf-8">
+ <title>Dart VM Observatory Timeline</title>
+ <script src="timeline.js"></script>
+ <link rel="import" href="third_party/trace_viewer_full.html">
+ <style>
+html, body {
+ box-sizing: border-box;
+ overflow: hidden;
+ margin: 0px;
+ padding: 0;
+ width: 100%;
+ height: 100%;
+}
+#trace-viewer {
+ width: 100%;
+ height: 100%;
+}
+#trace-viewer:focus {
+ outline: none;
+}
+ </style>
+</head>
+<body>
+</body>
+</html>
« no previous file with comments | « runtime/observatory/web/third_party/README.md ('k') | runtime/observatory/web/timeline.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698