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

Unified Diff: chrome/common/extensions/docs/examples/api/processes/process_monitor/popup.js

Issue 319953002: Task Manager: Remove dead FPS code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/api/processes.json ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/examples/api/processes/process_monitor/popup.js
diff --git a/chrome/common/extensions/docs/examples/api/processes/process_monitor/popup.js b/chrome/common/extensions/docs/examples/api/processes/process_monitor/popup.js
index 46f6a936e85d7a7b3ce28e20754d1ad6a0e2b411..8e4d46b210223f18f2f9aa6a1dd9d4fa8bd567da 100644
--- a/chrome/common/extensions/docs/examples/api/processes/process_monitor/popup.js
+++ b/chrome/common/extensions/docs/examples/api/processes/process_monitor/popup.js
@@ -15,7 +15,6 @@ function init() {
"<td>CPU</td>" +
"<td>Network</td>" +
"<td>Private Memory</td>" +
- "<td>FPS</td>" +
"<td>JS Memory</td>" +
"<td></td>" +
"</tr>\n";
@@ -58,12 +57,6 @@ function displayProcessInfo(process, table) {
} else {
table += "<td>N/A</td>";
}
- if ("fps" in process) {
- table += "<td>" + process.fps.toFixed(2) + "</td>";
- } else {
- table += "<td>N/A</td>";
- }
-
if ("jsMemoryAllocated" in process) {
var allocated = process.jsMemoryAllocated / 1024;
var used = process.jsMemoryUsed / 1024;
« no previous file with comments | « chrome/common/extensions/api/processes.json ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698