diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-13 18:30:03 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-13 18:30:03 +0000 |
commit | 0c912bd69b82fe09debef06a58c5234037a61cb7 (patch) | |
tree | 7be596b93d2bd0b5e1fcad8b7591a8475187f731 /chrome/browser/cocoa/task_manager_mac.mm | |
parent | fb861bab6ca6b80c7d06f7a8fa33584c7c1cb56b (diff) | |
download | chromium_src-0c912bd69b82fe09debef06a58c5234037a61cb7.zip chromium_src-0c912bd69b82fe09debef06a58c5234037a61cb7.tar.gz chromium_src-0c912bd69b82fe09debef06a58c5234037a61cb7.tar.bz2 |
Mac: Add favicons to hung renderer dialog.
Nib change: Changed data cell from NSFieldTextCell to NSButtonCell with checkbox style.
BUG=none
TEST=Go to wikipedia, cmd-click a couple links, enter "about:hang" in omnibox. After a while, the hung renderer dialog should show up and have a favicon for all the tabs you opened by cmd-clicking.
Review URL: http://codereview.chromium.org/545040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36137 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/task_manager_mac.mm')
-rw-r--r-- | chrome/browser/cocoa/task_manager_mac.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/cocoa/task_manager_mac.mm b/chrome/browser/cocoa/task_manager_mac.mm index 4d0741b0..8ff5e87 100644 --- a/chrome/browser/cocoa/task_manager_mac.mm +++ b/chrome/browser/cocoa/task_manager_mac.mm @@ -287,7 +287,7 @@ row:(NSInteger)rowIndex { NSCell* cell = [tableColumn dataCellForRow:rowIndex]; - // Set the favicon and title for the search engine in the name column. + // Set the favicon and title for the task in the name column. if ([[tableColumn identifier] intValue] == IDS_TASK_MANAGER_PAGE_COLUMN) { DCHECK([cell isKindOfClass:[NSButtonCell class]]); NSButtonCell* buttonCell = static_cast<NSButtonCell*>(cell); |