Index: chrome/browser/profiles/profile.h |
=================================================================== |
--- chrome/browser/profiles/profile.h (revision 86725) |
+++ chrome/browser/profiles/profile.h (working copy) |
@@ -86,6 +86,7 @@ |
class SSLConfigServiceManager; |
class SSLHostState; |
class SpellCheckHost; |
+class StatusTray; |
class TemplateURLFetcher; |
class TemplateURLModel; |
class TokenService; |
@@ -450,6 +451,11 @@ |
// Returns the WebKitContext assigned to this profile. |
virtual WebKitContext* GetWebKitContext() = 0; |
+ // Returns the StatusTray, which provides an API for displaying status icons |
+ // in the system status tray. Returns NULL if status icons are not supported |
+ // on this platform (or this is a unit test). |
+ virtual StatusTray* GetStatusTray() = 0; |
+ |
// Marks the profile as cleanly shutdown. |
// |
// NOTE: this is invoked internally on a normal shutdown, but is public so |