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

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

Issue 12377099: Added support for "bin-ified" vmstats web app source files (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>VM Stats</title>
6 <link rel="stylesheet" href="vmstats.css">
7 <script type="text/javascript" src="https://www.google.com/jsapi"></script>
8 </head>
9 <body>
10 <h1>VM Stats</h1>
11 <div id="vmstats">
12 <p id="dashboard">
13 <h3>Allocated Memory</h3>
14 <canvas id="graph" width="480px" height="240px"></canvas>
15 <h3>Isolates</h3>
16 <ul id="isolateList"></ul>
17 </p>
18 </div>
19 <div id="statusSection">
20 <p id="statusText"></p>
21 </div>
22
23 <script type="application/dart" src="vmstats.dart"></script>
24 <script src="packages/browser/dart.js"></script>
25 </body>
26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698