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 "ash/session/user_info.h" | 7 #include "ash/session/user_info.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 | 131 |
132 void SessionStateDelegate::AddSessionStateObserver( | 132 void SessionStateDelegate::AddSessionStateObserver( |
133 ash::SessionStateObserver* observer) { | 133 ash::SessionStateObserver* observer) { |
134 NOTIMPLEMENTED(); | 134 NOTIMPLEMENTED(); |
135 } | 135 } |
136 | 136 |
137 void SessionStateDelegate::RemoveSessionStateObserver( | 137 void SessionStateDelegate::RemoveSessionStateObserver( |
138 ash::SessionStateObserver* observer) { | 138 ash::SessionStateObserver* observer) { |
139 NOTIMPLEMENTED(); | 139 NOTIMPLEMENTED(); |
140 } | 140 } |
| 141 |
| 142 void SessionStateDelegate::HideMultipleSigninScreen() { |
| 143 NOTIMPLEMENTED(); |
| 144 } |
OLD | NEW |