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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 bool SessionStateDelegate::IsUserSessionBlocked() const { | 65 bool SessionStateDelegate::IsUserSessionBlocked() const { |
66 return false; | 66 return false; |
67 } | 67 } |
68 | 68 |
69 const base::string16 SessionStateDelegate::GetUserDisplayName( | 69 const base::string16 SessionStateDelegate::GetUserDisplayName( |
70 ash::MultiProfileIndex index) const { | 70 ash::MultiProfileIndex index) const { |
71 NOTIMPLEMENTED(); | 71 NOTIMPLEMENTED(); |
72 return base::UTF8ToUTF16(""); | 72 return base::UTF8ToUTF16(""); |
73 } | 73 } |
74 | 74 |
| 75 const base::string16 SessionStateDelegate::GetUserGivenName( |
| 76 ash::MultiProfileIndex index) const { |
| 77 NOTIMPLEMENTED(); |
| 78 return base::UTF8ToUTF16(""); |
| 79 } |
| 80 |
75 const std::string SessionStateDelegate::GetUserEmail( | 81 const std::string SessionStateDelegate::GetUserEmail( |
76 ash::MultiProfileIndex index) const { | 82 ash::MultiProfileIndex index) const { |
77 NOTIMPLEMENTED(); | 83 NOTIMPLEMENTED(); |
78 return ""; | 84 return ""; |
79 } | 85 } |
80 | 86 |
81 const std::string SessionStateDelegate::GetUserID( | 87 const std::string SessionStateDelegate::GetUserID( |
82 ash::MultiProfileIndex index) const { | 88 ash::MultiProfileIndex index) const { |
83 NOTIMPLEMENTED(); | 89 NOTIMPLEMENTED(); |
84 return ""; | 90 return ""; |
(...skipping 20 matching lines...) Expand all Loading... |
105 | 111 |
106 void SessionStateDelegate::AddSessionStateObserver( | 112 void SessionStateDelegate::AddSessionStateObserver( |
107 ash::SessionStateObserver* observer) { | 113 ash::SessionStateObserver* observer) { |
108 NOTIMPLEMENTED(); | 114 NOTIMPLEMENTED(); |
109 } | 115 } |
110 | 116 |
111 void SessionStateDelegate::RemoveSessionStateObserver( | 117 void SessionStateDelegate::RemoveSessionStateObserver( |
112 ash::SessionStateObserver* observer) { | 118 ash::SessionStateObserver* observer) { |
113 NOTIMPLEMENTED(); | 119 NOTIMPLEMENTED(); |
114 } | 120 } |
OLD | NEW |