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

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

Issue 191143002: Added process title to Process Monitor Sample Extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/docs/examples/api/processes/process_monitor/popup.html ('k') | no next file » | 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 61f00d535e9121ca1faba60f63540fe5f94eaa1b..46f6a936e85d7a7b3ce28e20754d1ad6a0e2b411 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
@@ -9,6 +9,7 @@ function init() {
var table = "<table>\n" +
"<tr><td><b>Process</b></td>" +
"<td>OS ID</td>" +
+ "<td>Title</td>" +
"<td>Type</td>" +
"<td>Tabs</td>" +
"<td>CPU</td>" +
@@ -46,6 +47,7 @@ function displayProcessInfo(process, table) {
table +=
"<tr><td>" + process.id + "</td>" +
"<td>" + process.osProcessId + "</td>" +
+ "<td>" + process.title + "</td>" +
"<td>" + process.type + "</td>" +
"<td>" + process.tabs + "</td>" +
"<td>" + process.cpu + "</td>" +
« no previous file with comments | « chrome/common/extensions/docs/examples/api/processes/process_monitor/popup.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698