Home
last modified time | relevance | path

Searched refs:CreateProfileHandler (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/chrome/browser/ui/webui/options/
Dcreate_profile_handler.cc33 CreateProfileHandler::CreateProfileHandler() in CreateProfileHandler() function in options::CreateProfileHandler
38 CreateProfileHandler::~CreateProfileHandler() { in ~CreateProfileHandler()
42 void CreateProfileHandler::GetLocalizedValues( in GetLocalizedValues()
46 void CreateProfileHandler::RegisterMessages() { in RegisterMessages()
49 base::Bind(&CreateProfileHandler::HandleCancelProfileCreation, in RegisterMessages()
53 base::Bind(&CreateProfileHandler::CreateProfile, in RegisterMessages()
57 void CreateProfileHandler::CreateProfile(const ListValue* args) { in CreateProfile()
121 base::Bind(&CreateProfileHandler::OnProfileCreated, in CreateProfile()
129 void CreateProfileHandler::OnProfileCreated( in OnProfileCreated()
166 void CreateProfileHandler::HandleProfileCreationSuccess( in HandleProfileCreationSuccess()
[all …]
Dcreate_profile_handler.h27 class CreateProfileHandler: public OptionsPageUIHandler {
29 CreateProfileHandler();
30 virtual ~CreateProfileHandler();
158 base::WeakPtrFactory<CreateProfileHandler> weak_ptr_factory_;
160 DISALLOW_COPY_AND_ASSIGN(CreateProfileHandler);
Doptions_ui.cc264 AddOptionsPageUIHandler(localized_strings, new CreateProfileHandler()); in OptionsUI()