| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 void SessionStateDelegate::UnlockScreen() { | 50 void SessionStateDelegate::UnlockScreen() { |
| 51 } | 51 } |
| 52 | 52 |
| 53 bool SessionStateDelegate::IsUserSessionBlocked() const { | 53 bool SessionStateDelegate::IsUserSessionBlocked() const { |
| 54 return false; | 54 return false; |
| 55 } | 55 } |
| 56 | 56 |
| 57 const base::string16 SessionStateDelegate::GetUserDisplayName( | 57 const base::string16 SessionStateDelegate::GetUserDisplayName( |
| 58 ash::MultiProfileIndex index) const { | 58 ash::MultiProfileIndex index) const { |
| 59 NOTIMPLEMENTED(); | 59 NOTIMPLEMENTED(); |
| 60 return UTF8ToUTF16(""); | 60 return base::UTF8ToUTF16(""); |
| 61 } | 61 } |
| 62 | 62 |
| 63 const std::string SessionStateDelegate::GetUserEmail( | 63 const std::string SessionStateDelegate::GetUserEmail( |
| 64 ash::MultiProfileIndex index) const { | 64 ash::MultiProfileIndex index) const { |
| 65 NOTIMPLEMENTED(); | 65 NOTIMPLEMENTED(); |
| 66 return ""; | 66 return ""; |
| 67 } | 67 } |
| 68 | 68 |
| 69 const std::string SessionStateDelegate::GetUserID( | 69 const std::string SessionStateDelegate::GetUserID( |
| 70 ash::MultiProfileIndex index) const { | 70 ash::MultiProfileIndex index) const { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 100 ash::SessionStateObserver* observer) { | 100 ash::SessionStateObserver* observer) { |
| 101 NOTIMPLEMENTED(); | 101 NOTIMPLEMENTED(); |
| 102 } | 102 } |
| 103 | 103 |
| 104 bool SessionStateDelegate::TransferWindowToDesktopOfUser( | 104 bool SessionStateDelegate::TransferWindowToDesktopOfUser( |
| 105 aura::Window* window, | 105 aura::Window* window, |
| 106 ash::MultiProfileIndex index) { | 106 ash::MultiProfileIndex index) { |
| 107 NOTIMPLEMENTED(); | 107 NOTIMPLEMENTED(); |
| 108 return false; | 108 return false; |
| 109 } | 109 } |
| OLD | NEW |