Chromium Code Reviews| Index: chrome/browser/profiles/profile_info_interface.h |
| diff --git a/chrome/browser/profiles/profile_info_interface.h b/chrome/browser/profiles/profile_info_interface.h |
| index 6a08f9a29d6890b4b1991b6ddb2efbcb212ba9dd..486a35cdafbe6ffb8230db708257c568de8a03d5 100644 |
| --- a/chrome/browser/profiles/profile_info_interface.h |
| +++ b/chrome/browser/profiles/profile_info_interface.h |
| @@ -36,6 +36,15 @@ class ProfileInfoInterface { |
| virtual bool GetBackgroundStatusOfProfileAtIndex( |
| size_t index) const = 0; |
| + virtual string16 GetGAIANameOfProfileAtIndex(size_t index) const = 0; |
| + |
| + virtual bool GetIsUsingGAIANameOfProfileAtIndex(size_t index) const = 0; |
|
Miranda Callahan
2011/11/17 15:21:10
Could you add comments, at least for this one and
sail
2011/11/21 23:52:47
Done.
|
| + |
| + virtual const gfx::Image& GetGAIAPictureOfProfileAtIndex( |
| + size_t index) const = 0; |
| + |
| + virtual bool GetIsUsingGAIAPictureOfProfileAtIndex(size_t index) const = 0; |
| + |
| protected: |
| virtual ~ProfileInfoInterface() {} |
| }; |