| 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_SCREENS_USER_IMAGE_SCREEN_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_SCREEN_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_SCREEN_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_SCREEN_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 13 #include "chrome/browser/chromeos/camera_presence_notifier.h" | 13 #include "chrome/browser/chromeos/camera_presence_notifier.h" |
| 14 #include "chrome/browser/chromeos/login/screens/base_screen.h" | 14 #include "chrome/browser/chromeos/login/screens/base_screen.h" |
| 15 #include "chrome/browser/chromeos/login/users/avatar/user_image_sync_observer.h" | 15 #include "chrome/browser/chromeos/login/users/avatar/user_image_sync_observer.h" |
| 16 #include "chrome/browser/image_decoder.h" | 16 #include "components/image_fetcher/content/image_decoder.h" |
| 17 #include "components/user_manager/user.h" | 17 #include "components/user_manager/user.h" |
| 18 #include "components/user_manager/user_manager.h" | 18 #include "components/user_manager/user_manager.h" |
| 19 | 19 |
| 20 namespace base { | 20 namespace base { |
| 21 class Timer; | 21 class Timer; |
| 22 class Value; | 22 class Value; |
| 23 } | 23 } |
| 24 | 24 |
| 25 namespace policy { | 25 namespace policy { |
| 26 class PolicyChangeRegistrar; | 26 class PolicyChangeRegistrar; |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 | 149 |
| 150 // The time when we started wait for user image sync. | 150 // The time when we started wait for user image sync. |
| 151 base::Time sync_waiting_start_time_; | 151 base::Time sync_waiting_start_time_; |
| 152 | 152 |
| 153 DISALLOW_COPY_AND_ASSIGN(UserImageScreen); | 153 DISALLOW_COPY_AND_ASSIGN(UserImageScreen); |
| 154 }; | 154 }; |
| 155 | 155 |
| 156 } // namespace chromeos | 156 } // namespace chromeos |
| 157 | 157 |
| 158 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_SCREEN_H_ | 158 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_SCREEN_H_ |
| OLD | NEW |