Index: ash/test/test_session_state_delegate.cc |
diff --git a/ash/test/test_session_state_delegate.cc b/ash/test/test_session_state_delegate.cc |
index e1085c02422b1fcc37d1a62586e5ac6dddd24cd6..722981f984e311dc49396bb51e464925a85b36f8 100644 |
--- a/ash/test/test_session_state_delegate.cc |
+++ b/ash/test/test_session_state_delegate.cc |
@@ -40,6 +40,12 @@ TestSessionStateDelegate::TestSessionStateDelegate() |
TestSessionStateDelegate::~TestSessionStateDelegate() { |
} |
+content::BrowserContext* |
+TestSessionStateDelegate::GetBrowserContextByIndex( |
+ MultiProfileIndex index) { |
+ return NULL; |
+} |
+ |
int TestSessionStateDelegate::GetMaximumNumberOfLoggedInUsers() const { |
return 3; |
} |
@@ -133,11 +139,12 @@ const std::string TestSessionStateDelegate::GetUserID( |
} |
const gfx::ImageSkia& TestSessionStateDelegate::GetUserImage( |
- MultiProfileIndex index) const { |
+ content::BrowserContext* context) const { |
return null_image_; |
} |
-void TestSessionStateDelegate::GetLoggedInUsers(UserIdList* users) { |
+bool TestSessionStateDelegate::ShouldShowAvatar(aura::Window* window) { |
+ return false; |
} |
void TestSessionStateDelegate::SwitchActiveUser(const std::string& user_id) { |