| // Copyright 2016 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "chrome/browser/ui/webui/profile_helper.h" |
| |
| #include <memory> |
| |
| #include "base/bind.h" |
| #include "base/strings/utf_string_conversions.h" |
| #include "chrome/browser/browser_process.h" |
| #include "chrome/browser/profiles/profile_manager.h" |
| #include "chrome/browser/profiles/profile_metrics.h" |
| #include "chrome/browser/profiles/profile_window.h" |
| #include "chrome/browser/profiles/profiles_state.h" |
| #include "chrome/browser/signin/signin_util.h" |
| #include "chrome/browser/ui/browser_finder.h" |
| #include "chrome/browser/ui/profile_picker.h" |
| #include "chrome/browser/ui/webui/signin/signin_utils.h" |
| #include "components/keep_alive_registry/keep_alive_types.h" |
| #include "components/keep_alive_registry/scoped_keep_alive.h" |
| #include "content/public/browser/web_contents.h" |
| #include "content/public/browser/web_ui.h" |
| |
| namespace webui { |
| namespace { |
| |
| void DeleteProfileCallback(std::unique_ptr<ScopedKeepAlive> keep_alive, |
| Profile* profile) { |
| OpenNewWindowForProfile(profile); |
| } |
| |
| } // namespace |
| |
| void OpenNewWindowForProfile(Profile* profile) { |
| if (profiles::IsProfileLocked(profile->GetPath())) { |
| DCHECK(signin_util::IsForceSigninEnabled()); |
| // Displays the ProfilePicker without any sign-in dialog opened. |
| if (!ProfilePicker::IsOpen()) { |
| ProfilePicker::Show(ProfilePicker::EntryPoint::kProfileLocked); |
| } |
| |
| g_browser_process->profile_manager()->CreateProfileAsync( |
| ProfileManager::GetSystemProfilePath(), |
| ProfileManager::CreateCallback()); |
| return; |
| } |
| |
| if (ProfilePicker::IsOpen()) { |
| // If the profile picker is open, do not open a new browser automatically. |
| ProfilePicker::Show( |
| ProfilePicker::EntryPoint::kOpenNewWindowAfterProfileDeletion); |
| return; |
| } |
| |
| profiles::FindOrCreateNewWindowForProfile( |
| profile, chrome::startup::IS_PROCESS_STARTUP, |
| chrome::startup::IS_FIRST_RUN, false); |
| } |
| |
| void DeleteProfileAtPath(base::FilePath file_path, |
| ProfileMetrics::ProfileDelete deletion_source) { |
| if (!profiles::IsMultipleProfilesEnabled()) |
| return; |
| g_browser_process->profile_manager()->MaybeScheduleProfileForDeletion( |
| file_path, |
| base::BindOnce( |
| &DeleteProfileCallback, |
| std::make_unique<ScopedKeepAlive>(KeepAliveOrigin::PROFILE_HELPER, |
| KeepAliveRestartOption::DISABLED)), |
| deletion_source); |
| } |
| |
| } // namespace webui |