OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_UI_WEBUI_SIGNIN_USER_MANAGER_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_SIGNIN_MD_USER_MANAGER_UI_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_SIGNIN_USER_MANAGER_UI_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_SIGNIN_MD_USER_MANAGER_UI_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "content/public/browser/web_ui_controller.h" | 9 #include "content/public/browser/web_ui_controller.h" |
10 | 10 |
11 class UserManagerScreenHandler; | 11 class UserManagerScreenHandler; |
12 class SigninCreateProfileHandler; | |
Dan Beam
2016/02/25 01:04:40
alphabetize
Moe
2016/02/25 16:03:02
Done.
| |
12 | 13 |
13 namespace base { | 14 namespace base { |
14 class DictionaryValue; | 15 class DictionaryValue; |
15 } | 16 } |
16 namespace content { | 17 namespace content { |
17 class WebUIDataSource; | 18 class WebUIDataSource; |
18 } | 19 } |
19 | 20 |
20 // A WebUI dialog to display available users. | 21 // A WebUI dialog to display available users. |
21 class UserManagerUI : public content::WebUIController { | 22 class MDUserManagerUI : public content::WebUIController { |
22 public: | 23 public: |
23 explicit UserManagerUI(content::WebUI* web_ui); | 24 explicit MDUserManagerUI(content::WebUI* web_ui); |
24 ~UserManagerUI() override; | 25 ~MDUserManagerUI() override; |
25 | 26 |
26 private: | 27 private: |
27 content::WebUIDataSource* CreateUIDataSource( | 28 content::WebUIDataSource* CreateUIDataSource( |
28 const base::DictionaryValue& localized_strings); | 29 const base::DictionaryValue& localized_strings); |
29 void GetLocalizedStrings(base::DictionaryValue* localized_strings); | 30 void GetLocalizedStrings(base::DictionaryValue* localized_strings); |
30 | 31 |
31 UserManagerScreenHandler* user_manager_screen_handler_; | 32 UserManagerScreenHandler* user_manager_screen_handler_; |
33 SigninCreateProfileHandler* signin_create_profile_handler_; | |
32 | 34 |
33 DISALLOW_COPY_AND_ASSIGN(UserManagerUI); | 35 DISALLOW_COPY_AND_ASSIGN(MDUserManagerUI); |
34 }; | 36 }; |
35 | 37 |
36 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_USER_MANAGER_UI_H_ | 38 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_MD_USER_MANAGER_UI_H_ |
OLD | NEW |