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

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

Issue 10175008: Improving the process model extension API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
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 2582f06c1b78bc7d023694f87bb8809b52587206..54a9e44947b3c16fdcb1eed96924efcc8e3ffda2 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
@@ -10,7 +10,6 @@ function init() {
"<td>Type</td>" +
"<td>CPU</td>" +
"<td>Network</td>" +
- "<td>Shared Memory</td>" +
"<td>Private Memory</td>" +
"</tr>\n";
for (pid in processes) {
@@ -38,7 +37,6 @@ function displayProcessInfo(process, table) {
"<td>" + process.type + "</td>" +
"<td>" + process.cpu + "</td>" +
"<td>" + network + "</td>" +
- "<td>" + (process.sharedMemory / 1024) + "K</td>" +
"<td>" + (process.privateMemory / 1024) + "K</td>" +
"</tr>\n";
return table;

Powered by Google App Engine
This is Rietveld 408576698