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_VIEWS_LOGIN_DISPLAY_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_VIEWS_LOGIN_DISPLAY_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_VIEWS_LOGIN_DISPLAY_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_VIEWS_LOGIN_DISPLAY_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "chrome/browser/chromeos/login/login_display.h" | 12 #include "chrome/browser/chromeos/login/login_display.h" |
13 #include "chrome/browser/chromeos/login/message_bubble.h" | 13 #include "chrome/browser/chromeos/login/message_bubble.h" |
14 #include "chrome/browser/chromeos/login/user_controller.h" | 14 #include "chrome/browser/chromeos/login/user_controller.h" |
15 #include "gfx/rect.h" | 15 #include "ui/gfx/rect.h" |
16 | 16 |
17 namespace chromeos { | 17 namespace chromeos { |
18 | 18 |
19 class HelpAppLauncher; | 19 class HelpAppLauncher; |
20 class MessageBubble; | 20 class MessageBubble; |
21 | 21 |
22 // Views-based login UI implementation. | 22 // Views-based login UI implementation. |
23 // Uses UserController for each user pod / guest pod / new user pod and | 23 // Uses UserController for each user pod / guest pod / new user pod and |
24 // ExistingUserView / GuestUserView / NewUserView as their views. | 24 // ExistingUserView / GuestUserView / NewUserView as their views. |
25 // When Init is invoked, a UserController is created for each of the Users's | 25 // When Init is invoked, a UserController is created for each of the Users's |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 // Index of selected user (from the set of visible users). | 90 // Index of selected user (from the set of visible users). |
91 size_t selected_view_index_; | 91 size_t selected_view_index_; |
92 | 92 |
93 DISALLOW_COPY_AND_ASSIGN(ViewsLoginDisplay); | 93 DISALLOW_COPY_AND_ASSIGN(ViewsLoginDisplay); |
94 }; | 94 }; |
95 | 95 |
96 } // namespace chromeos | 96 } // namespace chromeos |
97 | 97 |
98 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_VIEWS_LOGIN_DISPLAY_H_ | 98 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_VIEWS_LOGIN_DISPLAY_H_ |
99 | 99 |
OLD | NEW |