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

Unified Diff: chrome/browser/ui/ash/session_state_delegate_views.cc

Issue 197773004: Move avatar holder code to ash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: clang fix Created 6 years, 9 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
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) {
« no previous file with comments | « chrome/browser/ui/ash/session_state_delegate_views.h ('k') | chrome/browser/ui/browser_navigator_browsertest_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698