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

Unified Diff: chrome/browser/ui/cocoa/task_manager_mac_unittest.mm

Issue 7828007: Add Profile data to the Task Manager on OS Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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/ui/cocoa/task_manager_mac.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/task_manager_mac_unittest.mm
===================================================================
--- chrome/browser/ui/cocoa/task_manager_mac_unittest.mm (revision 99168)
+++ chrome/browser/ui/cocoa/task_manager_mac_unittest.mm (working copy)
@@ -21,6 +21,7 @@
public:
TestResource(const string16& title, pid_t pid) : title_(title), pid_(pid) {}
virtual string16 GetTitle() const OVERRIDE { return title_; }
+ virtual string16 GetProfileName() const OVERRIDE { return string16(); }
virtual SkBitmap GetIcon() const OVERRIDE { return SkBitmap(); }
virtual base::ProcessHandle GetProcess() const OVERRIDE { return pid_; }
virtual Type GetType() const OVERRIDE { return RENDERER; }
@@ -28,6 +29,7 @@
virtual void SetSupportNetworkUsage() OVERRIDE { NOTREACHED(); }
virtual void Refresh() OVERRIDE {}
string16 title_;
+ string16 profile_name_;
pid_t pid_;
};
« no previous file with comments | « chrome/browser/ui/cocoa/task_manager_mac.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698