1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/webui/options/managed_user_create_confirm_handler.h"
8 #include "base/files/file_path.h"
9 #include "base/value_conversions.h"
10 #include "base/values.h"
11 #include "chrome/browser/browser_process.h"
12 #include "chrome/browser/profiles/profile.h"
13 #include "chrome/browser/profiles/profile_manager.h"
14 #include "chrome/browser/profiles/profile_window.h"
15 #include "chrome/browser/signin/signin_manager.h"
16 #include "chrome/browser/signin/signin_manager_base.h"
17 #include "chrome/browser/signin/signin_manager_factory.h"
18 #include "chrome/browser/ui/browser_finder.h"
19 #include "chrome/browser/ui/host_desktop.h"
20 #include "chrome/browser/ui/startup/startup_types.h"
21 #include "content/public/browser/web_ui.h"
22 #include "grit/generated_resources.h"
23 #include "ui/base/l10n/l10n_util.h"
27 ManagedUserCreateConfirmHandler::ManagedUserCreateConfirmHandler() {
30 ManagedUserCreateConfirmHandler::~ManagedUserCreateConfirmHandler() {
33 void ManagedUserCreateConfirmHandler::GetLocalizedValues(
34 base::DictionaryValue
* localized_strings
) {
35 DCHECK(localized_strings
);
37 static OptionsStringResource resources
[] = {
38 { "managedUserCreatedTitle", IDS_NEW_MANAGED_USER_CREATED_TITLE
},
39 { "managedUserCreatedText", IDS_NEW_MANAGED_USER_CREATED_TEXT
},
40 { "managedUserCreatedDone", IDS_NEW_MANAGED_USER_CREATED_DONE_BUTTON
},
41 { "managedUserCreatedSwitch", IDS_NEW_MANAGED_USER_CREATED_SWITCH_BUTTON
},
44 SigninManagerBase
* signin
=
45 SigninManagerFactory::GetForProfile(Profile::FromWebUI(web_ui()));
47 localized_strings
->SetString("custodianEmail",
48 signin
->GetAuthenticatedUsername());
50 localized_strings
->SetString("custodianEmail", std::string());
53 RegisterStrings(localized_strings
, resources
, arraysize(resources
));
56 void ManagedUserCreateConfirmHandler::RegisterMessages() {
57 web_ui()->RegisterMessageCallback("switchToProfile",
58 base::Bind(&ManagedUserCreateConfirmHandler::SwitchToProfile
,
59 base::Unretained(this)));
62 void ManagedUserCreateConfirmHandler::SwitchToProfile(
63 const base::ListValue
* args
) {
65 const base::Value
* file_path_value
;
66 if (!args
->Get(0, &file_path_value
))
69 base::FilePath profile_file_path
;
70 if (!base::GetValueAsFilePath(*file_path_value
, &profile_file_path
))
73 Profile
* profile
= g_browser_process
->profile_manager()->
74 GetProfileByPath(profile_file_path
);
78 chrome::FindBrowserWithWebContents(web_ui()->GetWebContents());
79 chrome::HostDesktopType desktop_type
= chrome::HOST_DESKTOP_TYPE_NATIVE
;
81 desktop_type
= browser
->host_desktop_type();
83 profiles::FindOrCreateNewWindowForProfile(
85 chrome::startup::IS_PROCESS_STARTUP
,
86 chrome::startup::IS_FIRST_RUN
,
91 } // namespace options