Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(550)

Side by Side Diff: chrome/browser/ui/webui/signin/md_user_manager_ui.h

Issue 1630903002: material design user manager with create profile flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Dan's comments #2 Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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;
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_
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc ('k') | chrome/browser/ui/webui/signin/md_user_manager_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698