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 "ash/test/test_session_state_delegate.h" | 5 #include "ash/test/test_session_state_delegate.h" |
6 | 6 |
7 #include "base/string16.h" | 7 #include "base/string16.h" |
8 #include "base/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 | 9 |
10 namespace ash { | 10 namespace ash { |
11 namespace test { | 11 namespace test { |
12 | 12 |
13 TestSessionStateDelegate::TestSessionStateDelegate() | 13 TestSessionStateDelegate::TestSessionStateDelegate() |
14 : has_active_user_(true), | 14 : has_active_user_(true), |
15 active_user_session_started_(true), | 15 active_user_session_started_(true), |
16 can_lock_screen_(true), | 16 can_lock_screen_(true), |
17 screen_locked_(false), | 17 screen_locked_(false), |
18 logged_in_users_(1) { | 18 logged_in_users_(1) { |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 void TestSessionStateDelegate::AddSessionStateObserver( | 98 void TestSessionStateDelegate::AddSessionStateObserver( |
99 ash::SessionStateObserver* observer) { | 99 ash::SessionStateObserver* observer) { |
100 } | 100 } |
101 | 101 |
102 void TestSessionStateDelegate::RemoveSessionStateObserver( | 102 void TestSessionStateDelegate::RemoveSessionStateObserver( |
103 ash::SessionStateObserver* observer) { | 103 ash::SessionStateObserver* observer) { |
104 } | 104 } |
105 | 105 |
106 } // namespace test | 106 } // namespace test |
107 } // namespace ash | 107 } // namespace ash |
OLD | NEW |