| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_SCREEN_LOCK_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCK_VIEW_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCK_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCK_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/chromeos/login/helper.h" | 9 #include "chrome/browser/chromeos/login/helper.h" |
| 10 #include "chrome/browser/chromeos/login/user_view.h" | 10 #include "chrome/browser/chromeos/login/user_view.h" |
| 11 #include "content/public/browser/notification_observer.h" | 11 #include "content/public/browser/notification_observer.h" |
| 12 #include "content/public/browser/notification_registrar.h" | 12 #include "content/public/browser/notification_registrar.h" |
| 13 #include "views/controls/textfield/textfield_controller.h" | 13 #include "views/controls/textfield/textfield_controller.h" |
| 14 #include "views/view.h" | 14 #include "views/view.h" |
| 15 | 15 |
| 16 namespace views { | |
| 17 class ImageView; | |
| 18 } // namespace views | |
| 19 | |
| 20 namespace chromeos { | 16 namespace chromeos { |
| 21 | 17 |
| 22 class ScreenLocker; | 18 class ScreenLocker; |
| 23 class UserView; | 19 class UserView; |
| 24 | 20 |
| 25 namespace test { | 21 namespace test { |
| 26 class ScreenLockerTester; | 22 class ScreenLockerTester; |
| 27 } // namespace test | 23 } // namespace test |
| 28 | 24 |
| 29 // ScreenLockView creates view components necessary to authenticate | 25 // ScreenLockView creates view components necessary to authenticate |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 81 |
| 86 // Username that overlays on top of user's picture. | 82 // Username that overlays on top of user's picture. |
| 87 views::View* username_; | 83 views::View* username_; |
| 88 | 84 |
| 89 DISALLOW_COPY_AND_ASSIGN(ScreenLockView); | 85 DISALLOW_COPY_AND_ASSIGN(ScreenLockView); |
| 90 }; | 86 }; |
| 91 | 87 |
| 92 } // namespace chromeos | 88 } // namespace chromeos |
| 93 | 89 |
| 94 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCK_VIEW_H_ | 90 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREEN_LOCK_VIEW_H_ |
| OLD | NEW |