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 #ifndef ASH_TEST_TEST_SESSION_STATE_DELEGATE_H_ | 5 #ifndef ASH_TEST_TEST_SESSION_STATE_DELEGATE_H_ |
6 #define ASH_TEST_TEST_SESSION_STATE_DELEGATE_H_ | 6 #define ASH_TEST_TEST_SESSION_STATE_DELEGATE_H_ |
7 | 7 |
8 #include "ash/session_state_delegate.h" | 8 #include "ash/session_state_delegate.h" |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "ui/gfx/image/image_skia.h" | |
11 | 12 |
12 namespace ash { | 13 namespace ash { |
13 namespace test { | 14 namespace test { |
14 | 15 |
15 class TestSessionStateDelegate : public SessionStateDelegate { | 16 class TestSessionStateDelegate : public SessionStateDelegate { |
16 public: | 17 public: |
17 TestSessionStateDelegate(); | 18 TestSessionStateDelegate(); |
18 virtual ~TestSessionStateDelegate(); | 19 virtual ~TestSessionStateDelegate(); |
19 | 20 |
20 // SessionStateDelegate: | 21 // SessionStateDelegate: |
21 virtual bool HasActiveUser() const OVERRIDE; | 22 virtual int GetMaximumNumberOfLoggedInUsers() const OVERRIDE; |
23 virtual int NumberOfLoggedInUsers() const OVERRIDE; | |
22 virtual bool IsActiveUserSessionStarted() const OVERRIDE; | 24 virtual bool IsActiveUserSessionStarted() const OVERRIDE; |
23 virtual bool CanLockScreen() const OVERRIDE; | 25 virtual bool CanLockScreen() const OVERRIDE; |
24 virtual bool IsScreenLocked() const OVERRIDE; | 26 virtual bool IsScreenLocked() const OVERRIDE; |
25 virtual void LockScreen() OVERRIDE; | 27 virtual void LockScreen() OVERRIDE; |
26 virtual void UnlockScreen() OVERRIDE; | 28 virtual void UnlockScreen() OVERRIDE; |
29 virtual const base::string16 GetUserDisplayName( | |
30 ash::MultiProfileIndex index) const OVERRIDE; | |
31 virtual const std::string GetUserEmail( | |
Nikita (slow)
2013/05/17 17:00:32
nit: Replace email with user_id / UserId.
Mr4D (OOO till 08-26)
2013/05/17 18:45:09
Again - I'd rather not since this is what it is. L
| |
32 ash::MultiProfileIndex index) const OVERRIDE; | |
33 virtual const gfx::ImageSkia& GetUserImage( | |
34 ash::MultiProfileIndex index) const OVERRIDE; | |
35 virtual void GetLoggedInUsers(UserEmailList* users) OVERRIDE; | |
36 virtual void SwitchActiveUser(const std::string& email) OVERRIDE; | |
27 | 37 |
28 // Updates the internal state that indicates whether a session is in progress | 38 // Updates the internal state that indicates whether a session is in progress |
29 // and there is an active user. If |has_active_user| is |false|, | 39 // and there is an active user. If |has_active_user| is |false|, |
30 // |active_user_session_started_| is reset to |false| as well (see below for | 40 // |active_user_session_started_| is reset to |false| as well (see below for |
31 // the difference between these two flags). | 41 // the difference between these two flags). |
32 void SetHasActiveUser(bool has_active_user); | 42 void SetHasActiveUser(bool has_active_user); |
33 | 43 |
34 // Updates the internal state that indicates whether the session has been | 44 // Updates the internal state that indicates whether the session has been |
35 // fully started for the active user. If |active_user_session_started| is | 45 // fully started for the active user. If |active_user_session_started| is |
36 // |true|, |has_active_user_| is set to |true| as well (see below for the | 46 // |true|, |has_active_user_| is set to |true| as well (see below for the |
(...skipping 14 matching lines...) Expand all Loading... | |
51 // complete and both profile and UI are fully available. | 61 // complete and both profile and UI are fully available. |
52 bool active_user_session_started_; | 62 bool active_user_session_started_; |
53 | 63 |
54 // Whether the screen can be locked. Locking will only actually be allowed | 64 // Whether the screen can be locked. Locking will only actually be allowed |
55 // when this is |true| and there is an active user. | 65 // when this is |true| and there is an active user. |
56 bool can_lock_screen_; | 66 bool can_lock_screen_; |
57 | 67 |
58 // Whether the screen is currently locked. | 68 // Whether the screen is currently locked. |
59 bool screen_locked_; | 69 bool screen_locked_; |
60 | 70 |
71 // A test user image. | |
72 gfx::ImageSkia null_image_; | |
73 | |
61 DISALLOW_COPY_AND_ASSIGN(TestSessionStateDelegate); | 74 DISALLOW_COPY_AND_ASSIGN(TestSessionStateDelegate); |
62 }; | 75 }; |
63 | 76 |
64 } // namespace test | 77 } // namespace test |
65 } // namespace ash | 78 } // namespace ash |
66 | 79 |
67 #endif // ASH_TEST_TEST_SESSION_STATE_DELEGATE_H_ | 80 #endif // ASH_TEST_TEST_SESSION_STATE_DELEGATE_H_ |
OLD | NEW |