Home | History | Annotate | Download | only in login

Lines Matching refs:UserController

31 // UserController manages the set of windows needed to login a single existing
34 class UserController : public views::WidgetDelegate,
41 virtual void Login(UserController* source,
45 virtual void OnUserSelected(UserController* source) = 0;
46 virtual void RemoveUser(UserController* source) = 0;
59 // Creates a UserController representing new user or guest login.
60 UserController(Delegate* delegate, bool is_guest);
62 // Creates a UserController for the specified user.
63 UserController(Delegate* delegate, const UserManager::User& user);
65 ~UserController();
67 // Initializes the UserController, creating the set of windows/controls.
211 DISALLOW_COPY_AND_ASSIGN(UserController);