Index: chrome/browser/ui/ash/session_state_delegate_views.cc |
diff --git a/chrome/browser/ui/ash/session_state_delegate_views.cc b/chrome/browser/ui/ash/session_state_delegate_views.cc |
index e8c26ca0ff1cbcef7a06d9209ad9584d6fe13de5..cac69f999c219228b0146293a77ada7acbbe5a6a 100644 |
--- a/chrome/browser/ui/ash/session_state_delegate_views.cc |
+++ b/chrome/browser/ui/ash/session_state_delegate_views.cc |
@@ -20,6 +20,12 @@ SessionStateDelegate::SessionStateDelegate() { |
SessionStateDelegate::~SessionStateDelegate() { |
} |
+content::BrowserContext* SessionStateDelegate::GetBrowserContextByIndex( |
+ ash::MultiProfileIndex index) { |
+ NOTIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
int SessionStateDelegate::GetMaximumNumberOfLoggedInUsers() const { |
return 3; |
} |
@@ -73,14 +79,14 @@ const std::string SessionStateDelegate::GetUserID( |
} |
const gfx::ImageSkia& SessionStateDelegate::GetUserImage( |
- ash::MultiProfileIndex index) const { |
+ content::BrowserContext* context) const { |
NOTIMPLEMENTED(); |
// To make the compiler happy. |
return null_image; |
} |
-void SessionStateDelegate::GetLoggedInUsers(ash::UserIdList* users) { |
- NOTIMPLEMENTED(); |
+bool SessionStateDelegate::ShouldShowAvatar(aura::Window* window) { |
+ return false; |
} |
void SessionStateDelegate::SwitchActiveUser(const std::string& user_id) { |