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

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

Issue 9289057: Changing manifest to v2 extension samples (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Adding zip files after rebasing with master Created 8 years, 11 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
new file mode 100644
index 0000000000000000000000000000000000000000..2582f06c1b78bc7d023694f87bb8809b52587206
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/api/processes/process_monitor/popup.js
@@ -0,0 +1,47 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Shows an updating list of process statistics.
+function init() {
+ chrome.experimental.processes.onUpdated.addListener(function(processes) {
+ var table = "<table>\n" +
+ "<tr><td><b>Process</b></td>" +
+ "<td>Type</td>" +
+ "<td>CPU</td>" +
+ "<td>Network</td>" +
+ "<td>Shared Memory</td>" +
+ "<td>Private Memory</td>" +
+ "</tr>\n";
+ for (pid in processes) {
+ table = displayProcessInfo(processes[pid], table);
+ }
+ table += "</table>\n";
+ var div = document.getElementById("process-list");
+ div.innerHTML = table;
+ });
+}
+
+function displayProcessInfo(process, table) {
+ // Format network string like task manager
+ var network = process.network;
+ if (network > 1024) {
+ network = (network / 1024).toFixed(1) + " kB/s";
+ } else if (network > 0) {
+ network += " B/s";
+ } else if (network == -1) {
+ network = "N/A";
+ }
+
+ table +=
+ "<tr><td>" + process.id + "</td>" +
+ "<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;
+}
+
+document.addEventListener('DOMContentLoaded', init);

Powered by Google App Engine
This is Rietveld 408576698