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 28 matching lines...) Expand all Loading... |
39 bool SessionStateDelegate::IsScreenLocked() const { | 39 bool SessionStateDelegate::IsScreenLocked() const { |
40 return false; | 40 return false; |
41 } | 41 } |
42 | 42 |
43 void SessionStateDelegate::LockScreen() { | 43 void SessionStateDelegate::LockScreen() { |
44 } | 44 } |
45 | 45 |
46 void SessionStateDelegate::UnlockScreen() { | 46 void SessionStateDelegate::UnlockScreen() { |
47 } | 47 } |
48 | 48 |
| 49 bool SessionStateDelegate::IsUserSessionBlocked() const { |
| 50 return false; |
| 51 } |
| 52 |
49 const base::string16 SessionStateDelegate::GetUserDisplayName( | 53 const base::string16 SessionStateDelegate::GetUserDisplayName( |
50 ash::MultiProfileIndex index) const { | 54 ash::MultiProfileIndex index) const { |
51 NOTIMPLEMENTED(); | 55 NOTIMPLEMENTED(); |
52 return UTF8ToUTF16(""); | 56 return UTF8ToUTF16(""); |
53 } | 57 } |
54 | 58 |
55 const std::string SessionStateDelegate::GetUserEmail( | 59 const std::string SessionStateDelegate::GetUserEmail( |
56 ash::MultiProfileIndex index) const { | 60 ash::MultiProfileIndex index) const { |
57 NOTIMPLEMENTED(); | 61 NOTIMPLEMENTED(); |
58 return ""; | 62 return ""; |
(...skipping 16 matching lines...) Expand all Loading... |
75 | 79 |
76 void SessionStateDelegate::AddSessionStateObserver( | 80 void SessionStateDelegate::AddSessionStateObserver( |
77 ash::SessionStateObserver* observer) { | 81 ash::SessionStateObserver* observer) { |
78 NOTIMPLEMENTED(); | 82 NOTIMPLEMENTED(); |
79 } | 83 } |
80 | 84 |
81 void SessionStateDelegate::RemoveSessionStateObserver( | 85 void SessionStateDelegate::RemoveSessionStateObserver( |
82 ash::SessionStateObserver* observer) { | 86 ash::SessionStateObserver* observer) { |
83 NOTIMPLEMENTED(); | 87 NOTIMPLEMENTED(); |
84 } | 88 } |
OLD | NEW |