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

Side by Side Diff: runtime/bin/vmstats/vmstats.html

Issue 13008025: Client-side support for stacktrace VM status. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « runtime/bin/vmstats/vmstats.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 2 <!-- Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
3 for details. All rights reserved. Use of this source code is governed by a 3 for details. All rights reserved. Use of this source code is governed by a
4 BSD-style license that can be found in the LICENSE file. 4 BSD-style license that can be found in the LICENSE file.
5 --> 5 -->
6 <html> 6 <html>
7 <head> 7 <head>
8 <meta charset="utf-8"> 8 <meta charset="utf-8">
9 <title>VM Stats</title> 9 <title>VM Stats</title>
10 <link rel="stylesheet" href="vmstats.css"> 10 <link rel="stylesheet" href="vmstats.css">
11 <script type="text/javascript" src="https://www.google.com/jsapi"></script> 11 <script type="text/javascript" src="https://www.google.com/jsapi"></script>
12 </head> 12 </head>
13 <body> 13 <body>
14 <h1>VM Stats</h1> 14 <h1>VM Stats</h1>
15 <div id="vmstats"> 15 <div id="vmstats">
16 <p id="dashboard"> 16 <p id="dashboard">
17 <h3>Allocated Memory</h3> 17 <h3>Allocated Memory</h3>
18 <canvas id="graph" width="480px" height="240px"></canvas> 18 <canvas id="graph" width="480px" height="240px"></canvas>
19 <h3>Isolates</h3> 19 <h3>Isolates</h3>
20 <ul id="isolateList"></ul> 20 <table id="isolateList"></table>
21 </p> 21 </p>
22 </div> 22 </div>
23 <div id="statusSection"> 23 <div id="statusSection">
24 <p id="statusText"></p> 24 <p id="statusText"></p>
25 </div> 25 </div>
26 26
27 <script type="application/dart" src="vmstats.dart"></script> 27 <script type="application/dart" src="vmstats.dart"></script>
28 <script src="packages/browser/dart.js"></script> 28 <script src="packages/browser/dart.js"></script>
29 </body> 29 </body>
30 </html> 30 </html>
OLDNEW
« no previous file with comments | « runtime/bin/vmstats/vmstats.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698