OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 29 matching lines...) Expand all Loading... |
40 public content::NotificationObserver { | 40 public content::NotificationObserver { |
41 public: | 41 public: |
42 // UserManager implementation: | 42 // UserManager implementation: |
43 virtual ~UserManagerImpl(); | 43 virtual ~UserManagerImpl(); |
44 | 44 |
45 virtual const UserList& GetUsers() const OVERRIDE; | 45 virtual const UserList& GetUsers() const OVERRIDE; |
46 virtual void UserLoggedIn(const std::string& email) OVERRIDE; | 46 virtual void UserLoggedIn(const std::string& email) OVERRIDE; |
47 virtual void DemoUserLoggedIn() OVERRIDE; | 47 virtual void DemoUserLoggedIn() OVERRIDE; |
48 virtual void GuestUserLoggedIn() OVERRIDE; | 48 virtual void GuestUserLoggedIn() OVERRIDE; |
49 virtual void EphemeralUserLoggedIn(const std::string& email) OVERRIDE; | 49 virtual void EphemeralUserLoggedIn(const std::string& email) OVERRIDE; |
50 virtual void SetLoggedInUserWallpaper() OVERRIDE; | 50 virtual void InitializeWallpaper() OVERRIDE; |
51 virtual void UserSelected(const std::string& email) OVERRIDE; | 51 virtual void UserSelected(const std::string& email) OVERRIDE; |
52 virtual void SessionStarted() OVERRIDE; | 52 virtual void SessionStarted() OVERRIDE; |
53 virtual void RemoveUser(const std::string& email, | 53 virtual void RemoveUser(const std::string& email, |
54 RemoveUserDelegate* delegate) OVERRIDE; | 54 RemoveUserDelegate* delegate) OVERRIDE; |
55 virtual void RemoveUserFromList(const std::string& email) OVERRIDE; | 55 virtual void RemoveUserFromList(const std::string& email) OVERRIDE; |
56 virtual bool IsKnownUser(const std::string& email) const OVERRIDE; | 56 virtual bool IsKnownUser(const std::string& email) const OVERRIDE; |
57 virtual const User* FindUser(const std::string& email) const OVERRIDE; | 57 virtual const User* FindUser(const std::string& email) const OVERRIDE; |
58 virtual const User& GetLoggedInUser() const OVERRIDE; | 58 virtual const User& GetLoggedInUser() const OVERRIDE; |
59 virtual User& GetLoggedInUser() OVERRIDE; | 59 virtual User& GetLoggedInUser() OVERRIDE; |
60 virtual void SaveUserOAuthStatus( | 60 virtual void SaveUserOAuthStatus( |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 | 352 |
353 // Data URL for |downloaded_profile_image_|. | 353 // Data URL for |downloaded_profile_image_|. |
354 std::string downloaded_profile_image_data_url_; | 354 std::string downloaded_profile_image_data_url_; |
355 | 355 |
356 DISALLOW_COPY_AND_ASSIGN(UserManagerImpl); | 356 DISALLOW_COPY_AND_ASSIGN(UserManagerImpl); |
357 }; | 357 }; |
358 | 358 |
359 } // namespace chromeos | 359 } // namespace chromeos |
360 | 360 |
361 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ | 361 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ |
OLD | NEW |