| OLD | NEW |
| (Empty) |
| 1 <!-- Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 Use of this source code is governed by a BSD-style license that can be | |
| 3 found in the LICENSE file. --> | |
| 4 <h2>Processes</h2> | |
| 5 <div id="os-view">OS: <span id="os-value">unknown</span></div> | |
| 6 <div id="uptime-view">Uptime: <span id="uptime-value">unknown</span></div> | |
| 7 | |
| 8 <table class="list" id="snapshot-view"> | |
| 9 <tr class="header"> | |
| 10 <th rowspan="2" class="process-id bottom">PID | |
| 11 <th rowspan="2" class="process-info bottom">Name | |
| 12 <th colspan="2" class="process-memory">Memory [KB] | |
| 13 <tr class="header bottom"> | |
| 14 <th class="process-memory-private">Private | |
| 15 <th class="process-memory-v8">V8<br>Used / Alloc | |
| 16 <tr id="process-template"> | |
| 17 <td class="process-id"> | |
| 18 <td class="process-info"> | |
| 19 <td class="process-memory-private"> | |
| 20 <td class="process-memory-v8"> | |
| 21 </table> | |
| OLD | NEW |