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

Unified Diff: chrome/browser/ui/webui/task_manager_handler.cc

Issue 9535008: WebUI TaskManager: Make the button "End process" grayed on selecting the browser process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/task_manager_handler.cc
diff --git a/chrome/browser/ui/webui/task_manager_handler.cc b/chrome/browser/ui/webui/task_manager_handler.cc
index 23eeda186f07b8279f5b239b3e0124e72c3dc61e..dd4c8a40636b3678bbf24825fa659e6ddd39048b 100644
--- a/chrome/browser/ui/webui/task_manager_handler.cc
+++ b/chrome/browser/ui/webui/task_manager_handler.cc
@@ -192,8 +192,9 @@ DictionaryValue* CreateTaskGroupValue(
val->SetInteger("index", index);
val->SetBoolean("isBackgroundResource",
tm->IsBackgroundResource(index));
- CreateGroupColumnList(tm, "uniqueId", index, length, val);
CreateGroupColumnList(tm, "processId", index, 1, val);
+ CreateGroupColumnList(tm, "type", index, length, val);
+ CreateGroupColumnList(tm, "uniqueId", index, length, val);
for (size_t i = 0; i < arraysize(kColumnsList); ++i) {
const std::string column_id = kColumnsList[i].column_id;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698