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

Unified Diff: chrome/common/extensions/api/processes.json

Issue 165153003: Add process title and nacl debug port fields to the processes api. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 6 years, 10 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/api/processes.json
diff --git a/chrome/common/extensions/api/processes.json b/chrome/common/extensions/api/processes.json
index 77b1ad77fb687b2c11d7c8800c476912050f5f77..9ff9dff6aaac6a624c2f99e9aa840dc872f8b5e0 100644
--- a/chrome/common/extensions/api/processes.json
+++ b/chrome/common/extensions/api/processes.json
@@ -20,6 +20,10 @@
"type": "integer",
"description": "The ID of the process, as provided by the OS."
},
+ "title": {
+ "type": "string",
+ "description": "The title of the process as seen in the task manager."
+ },
"type": {
"type": "string",
"enum": ["browser", "renderer", "extension", "notification", "plugin", "worker", "nacl", "utility", "gpu", "other"],
@@ -29,6 +33,10 @@
"type": "string",
"description": "The profile which the process is associated with."
},
+ "naclDebugPort": {
+ "type": "integer",
+ "description": "The debugging port for Native Client processes. Zero for other process types and for NaCl processes that do not have debugging enabled."
+ },
"tabs": {
"type": "array", "items": {"type": "integer", "minimum": 0},
"description": "Array of Tab IDs that have a page rendered by this process. The list will be non-empty for renderer processes only."

Powered by Google App Engine
This is Rietveld 408576698