| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/ash/session_state_delegate_views.h" | 5 #include "chrome/browser/ui/ash/session_state_delegate_views.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
| 9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
| 10 #include "ui/gfx/image/image_skia.h" | 10 #include "ui/gfx/image/image_skia.h" |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 return ""; | 72 return ""; |
| 73 } | 73 } |
| 74 | 74 |
| 75 const gfx::ImageSkia& SessionStateDelegate::GetUserImage( | 75 const gfx::ImageSkia& SessionStateDelegate::GetUserImage( |
| 76 ash::MultiProfileIndex index) const { | 76 ash::MultiProfileIndex index) const { |
| 77 NOTIMPLEMENTED(); | 77 NOTIMPLEMENTED(); |
| 78 // To make the compiler happy. | 78 // To make the compiler happy. |
| 79 return null_image; | 79 return null_image; |
| 80 } | 80 } |
| 81 | 81 |
| 82 void SessionStateDelegate::GetLoggedInUsers(ash::UserIdList* users) { | 82 bool SessionStateDelegate::ShouldShowAvatar(aura::Window* window) { |
| 83 NOTIMPLEMENTED(); | 83 return false; |
| 84 } | 84 } |
| 85 | 85 |
| 86 void SessionStateDelegate::SwitchActiveUser(const std::string& user_id) { | 86 void SessionStateDelegate::SwitchActiveUser(const std::string& user_id) { |
| 87 NOTIMPLEMENTED(); | 87 NOTIMPLEMENTED(); |
| 88 } | 88 } |
| 89 | 89 |
| 90 void SessionStateDelegate::CycleActiveUser(CycleUser cycle_user) { | 90 void SessionStateDelegate::CycleActiveUser(CycleUser cycle_user) { |
| 91 NOTIMPLEMENTED(); | 91 NOTIMPLEMENTED(); |
| 92 } | 92 } |
| 93 | 93 |
| 94 void SessionStateDelegate::AddSessionStateObserver( | 94 void SessionStateDelegate::AddSessionStateObserver( |
| 95 ash::SessionStateObserver* observer) { | 95 ash::SessionStateObserver* observer) { |
| 96 NOTIMPLEMENTED(); | 96 NOTIMPLEMENTED(); |
| 97 } | 97 } |
| 98 | 98 |
| 99 void SessionStateDelegate::RemoveSessionStateObserver( | 99 void SessionStateDelegate::RemoveSessionStateObserver( |
| 100 ash::SessionStateObserver* observer) { | 100 ash::SessionStateObserver* observer) { |
| 101 NOTIMPLEMENTED(); | 101 NOTIMPLEMENTED(); |
| 102 } | 102 } |
| OLD | NEW |