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." |