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

Unified Diff: chrome/browser/cocoa/task_manager_mac.h

Issue 208043: Task Manager for OS X: Set up columns, show rows. (Closed)
Patch Set: Fight Cocoa. Created 11 years, 3 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/app/nibs/TaskManager.xib ('k') | chrome/browser/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/cocoa/task_manager_mac.h
diff --git a/chrome/browser/cocoa/task_manager_mac.h b/chrome/browser/cocoa/task_manager_mac.h
index dbf34f9d5c513f6188b779f2954f774b15c4c7ff..46d04556f0103b818a3c58b0179ed013bb494a60 100644
--- a/chrome/browser/cocoa/task_manager_mac.h
+++ b/chrome/browser/cocoa/task_manager_mac.h
@@ -12,10 +12,16 @@
// This class is responsible for loading the task manager window and for
// managing it.
@interface TaskManagerWindowController : NSWindowController {
+ @private
+ IBOutlet NSTableView* tableView_;
+ TaskManagerModel* model_; // weak
}
// Creates and shows the task manager's window.
-- (id)init;
+- (id)initWithModel:(TaskManagerModel*)model;
+
+// Refreshes all data in the task manager table.
+- (void)reloadData;
@end
// This class listens to task changed events sent by chrome.
« no previous file with comments | « chrome/app/nibs/TaskManager.xib ('k') | chrome/browser/cocoa/task_manager_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698