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

Unified Diff: chrome/browser/task_manager/task_manager.cc

Issue 9958109: TaskManager: Replace the string "Page" with "Task" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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/browser/resources/task_manager/defines.js ('k') | chrome/browser/ui/cocoa/task_manager_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/task_manager/task_manager.cc
diff --git a/chrome/browser/task_manager/task_manager.cc b/chrome/browser/task_manager/task_manager.cc
index ad46354259ec8687c8665820f9f53bf89ccc715d..3a0e139b881efb9bc6498fda3b06b84bdf18d971 100644
--- a/chrome/browser/task_manager/task_manager.cc
+++ b/chrome/browser/task_manager/task_manager.cc
@@ -365,7 +365,7 @@ int TaskManagerModel::GetResourceIndexForGroup(int group_index,
int TaskManagerModel::CompareValues(int row1, int row2, int col_id) const {
CHECK(row1 < ResourceCount() && row2 < ResourceCount());
- if (col_id == IDS_TASK_MANAGER_PAGE_COLUMN) {
+ if (col_id == IDS_TASK_MANAGER_TASK_COLUMN) {
// Let's do the default, string compare on the resource title.
static icu::Collator* collator = NULL;
if (!collator) {
« no previous file with comments | « chrome/browser/resources/task_manager/defines.js ('k') | chrome/browser/ui/cocoa/task_manager_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698