Files
sdk/runtime/observatory/web/timeline.html
T
John McCutchan db07faaa8c Improve Observatory Timeline UI
- [x] Remove Stop / Start buttons and replace with fine grained category control.
- [x] Restrict the cpu profile to the time span of the timeline.
- [x] Display recorder name.
- [x] Show a popup when fetching the timeline from the VM.
- [x] Show a popup when fetching the cpu profile(s) from the VM.

Fixes #26401
Fixes #26394

BUG=
R=rmacnak@google.com

Review URL: https://codereview.chromium.org/1972523003 .
2016-05-12 07:16:19 -07:00

30 lines
554 B
HTML

<!DOCTYPE html>
<html style="height: 100%; width: 100%">
<head>
<meta charset="utf-8">
<title>Dart VM Observatory Timeline</title>
<script src="timeline_message_handler.js"></script>
<link rel="import" href="third_party/trace_viewer_full.html">
<script src="timeline.js"></script>
<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>