Chromium Code Reviews| Index: chrome/browser/resources/task_manager/main.js |
| diff --git a/chrome/browser/resources/task_manager/main.js b/chrome/browser/resources/task_manager/main.js |
| index 94c7a18cf1c01732422ad05e44f1b9a7a1018e70..29586d830811a8681600d79ab1a1fcdf01db336e 100644 |
| --- a/chrome/browser/resources/task_manager/main.js |
| +++ b/chrome/browser/resources/task_manager/main.js |
| @@ -53,7 +53,7 @@ TaskManager.prototype = { |
| }, |
| /** |
| - * Sends commands to kill a process. |
| + * Sends commands to initiate resource inspection. |
|
yurys
2011/10/26 14:33:44
This is comment for the inspect method.
|
| * @public |
| */ |
| killProcess: function () { |
| @@ -62,6 +62,14 @@ TaskManager.prototype = { |
| }, |
| /** |
| + * Sends commands to kill a process. |
|
yurys
2011/10/26 14:33:44
Move to killProcess comments?
|
| + * @public |
| + */ |
| + inspect: function (resourceIndex) { |
| + chrome.send('inspect', [resourceIndex]); |
| + }, |
| + |
| + /** |
| * Sends command to kill a process. |
| * @public |
| */ |