HomeSort by relevance Sort by last modified time
    Searched refs:UserFlow (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/chrome/browser/chromeos/login/
user_flow.h 18 class UserFlow {
20 UserFlow();
21 virtual ~UserFlow() = 0;
42 // UserFlow implementation for regular login flow.
43 class DefaultUserFlow : public UserFlow {
57 // UserFlow stub for non-regular flows.
58 class ExtendedUserFlow : public UserFlow {
user_flow.cc 21 UserFlow::UserFlow() : host_(NULL) {}
23 UserFlow::~UserFlow() {}
mock_user_manager.h 77 MOCK_METHOD2(SetUserFlow, void(const std::string&, UserFlow*));
103 virtual UserFlow* GetCurrentUserFlow() const OVERRIDE;
104 virtual UserFlow* GetUserFlow(const std::string&) const OVERRIDE;
126 scoped_ptr<UserFlow> user_flow_;
mock_user_manager.cc 69 UserFlow* MockUserManager::GetCurrentUserFlow() const {
73 UserFlow* MockUserManager::GetUserFlow(const std::string&) const {
fake_user_manager.h 105 virtual void SetUserFlow(const std::string& email, UserFlow* flow) OVERRIDE {}
106 virtual UserFlow* GetCurrentUserFlow() const OVERRIDE;
107 virtual UserFlow* GetUserFlow(const std::string& email) const OVERRIDE;
user_manager.h 316 virtual void SetUserFlow(const std::string& user_id, UserFlow* flow) = 0;
321 virtual UserFlow* GetCurrentUserFlow() const = 0;
326 virtual UserFlow* GetUserFlow(const std::string& user_id) const = 0;
user_manager_impl.h 123 virtual UserFlow* GetCurrentUserFlow() const OVERRIDE;
124 virtual UserFlow* GetUserFlow(const std::string& user_id) const OVERRIDE;
125 virtual void SetUserFlow(const std::string& user_id, UserFlow* flow) OVERRIDE;
284 UserFlow* GetDefaultUserFlow() const;
421 typedef std::map<std::string, UserFlow*> FlowMap;
424 mutable scoped_ptr<UserFlow> default_flow_;
fake_user_manager.cc 264 UserFlow* FakeUserManager::GetCurrentUserFlow() const {
268 UserFlow* FakeUserManager::GetUserFlow(const std::string& email) const {
login_performer.cc 227 UserFlow* new_flow = new LocallyManagedUserLoginFlow(user_context.username);
user_manager_impl.cc     [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
locally_managed_user_creation_screen_handler.cc 356 UserFlow* flow = new LocallyManagedUserCreationFlow(manager_username);

Completed in 563 milliseconds