| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/webui/signin/signin_create_profile_handler.h" | 5 #include "chrome/browser/ui/webui/signin/signin_create_profile_handler.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "chrome/browser/signin/signin_error_controller_factory.h" | 28 #include "chrome/browser/signin/signin_error_controller_factory.h" |
| 29 #include "chrome/browser/signin/signin_manager_factory.h" | 29 #include "chrome/browser/signin/signin_manager_factory.h" |
| 30 #include "chrome/browser/sync/profile_sync_service_factory.h" | 30 #include "chrome/browser/sync/profile_sync_service_factory.h" |
| 31 #include "chrome/browser/ui/browser_finder.h" | 31 #include "chrome/browser/ui/browser_finder.h" |
| 32 #include "chrome/browser/ui/user_manager.h" | 32 #include "chrome/browser/ui/user_manager.h" |
| 33 #include "chrome/browser/ui/webui/profile_helper.h" | 33 #include "chrome/browser/ui/webui/profile_helper.h" |
| 34 #include "chrome/common/pref_names.h" | 34 #include "chrome/common/pref_names.h" |
| 35 #include "chrome/common/url_constants.h" | 35 #include "chrome/common/url_constants.h" |
| 36 #include "chrome/grit/chromium_strings.h" | 36 #include "chrome/grit/chromium_strings.h" |
| 37 #include "chrome/grit/generated_resources.h" | 37 #include "chrome/grit/generated_resources.h" |
| 38 #include "components/browser_sync/browser/profile_sync_service.h" | 38 #include "components/browser_sync/profile_sync_service.h" |
| 39 #include "components/prefs/pref_service.h" | 39 #include "components/prefs/pref_service.h" |
| 40 #include "components/signin/core/browser/signin_error_controller.h" | 40 #include "components/signin/core/browser/signin_error_controller.h" |
| 41 #include "components/strings/grit/components_strings.h" | 41 #include "components/strings/grit/components_strings.h" |
| 42 #include "content/public/browser/browser_thread.h" | 42 #include "content/public/browser/browser_thread.h" |
| 43 #include "content/public/browser/notification_service.h" | 43 #include "content/public/browser/notification_service.h" |
| 44 #include "content/public/browser/web_ui.h" | 44 #include "content/public/browser/web_ui.h" |
| 45 #include "ui/base/l10n/l10n_util.h" | 45 #include "ui/base/l10n/l10n_util.h" |
| 46 | 46 |
| 47 #if defined(ENABLE_SUPERVISED_USERS) | 47 #if defined(ENABLE_SUPERVISED_USERS) |
| 48 #include "chrome/browser/supervised_user/legacy/supervised_user_registration_uti
lity.h" | 48 #include "chrome/browser/supervised_user/legacy/supervised_user_registration_uti
lity.h" |
| (...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 | 788 |
| 789 profiles::OpenBrowserWindowForProfile( | 789 profiles::OpenBrowserWindowForProfile( |
| 790 base::Bind(&SigninCreateProfileHandler::OnBrowserReadyCallback, | 790 base::Bind(&SigninCreateProfileHandler::OnBrowserReadyCallback, |
| 791 weak_ptr_factory_.GetWeakPtr()), | 791 weak_ptr_factory_.GetWeakPtr()), |
| 792 false, // Don't create a window if one already exists. | 792 false, // Don't create a window if one already exists. |
| 793 true, // Create a first run window. | 793 true, // Create a first run window. |
| 794 profile, | 794 profile, |
| 795 Profile::CREATE_STATUS_INITIALIZED); | 795 Profile::CREATE_STATUS_INITIALIZED); |
| 796 } | 796 } |
| 797 #endif | 797 #endif |
| OLD | NEW |