OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/options/sync_setup_handler.h" | 5 #include "chrome/browser/ui/webui/options/sync_setup_handler.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #include "components/autofill/core/common/autofill_constants.h" | 42 #include "components/autofill/core/common/autofill_constants.h" |
43 #include "components/autofill/core/common/autofill_pref_names.h" | 43 #include "components/autofill/core/common/autofill_pref_names.h" |
44 #include "components/browser_sync/profile_sync_service.h" | 44 #include "components/browser_sync/profile_sync_service.h" |
45 #include "components/google/core/browser/google_util.h" | 45 #include "components/google/core/browser/google_util.h" |
46 #include "components/prefs/pref_service.h" | 46 #include "components/prefs/pref_service.h" |
47 #include "components/signin/core/browser/signin_error_controller.h" | 47 #include "components/signin/core/browser/signin_error_controller.h" |
48 #include "components/signin/core/browser/signin_header_helper.h" | 48 #include "components/signin/core/browser/signin_header_helper.h" |
49 #include "components/signin/core/browser/signin_metrics.h" | 49 #include "components/signin/core/browser/signin_metrics.h" |
50 #include "components/signin/core/common/profile_management_switches.h" | 50 #include "components/signin/core/common/profile_management_switches.h" |
51 #include "components/strings/grit/components_strings.h" | 51 #include "components/strings/grit/components_strings.h" |
52 #include "components/sync/driver/sync_prefs.h" | 52 #include "components/sync/base/sync_prefs.h" |
53 #include "content/public/browser/render_view_host.h" | 53 #include "content/public/browser/render_view_host.h" |
54 #include "content/public/browser/web_contents.h" | 54 #include "content/public/browser/web_contents.h" |
55 #include "content/public/browser/web_contents_delegate.h" | 55 #include "content/public/browser/web_contents_delegate.h" |
56 #include "google_apis/gaia/gaia_auth_util.h" | 56 #include "google_apis/gaia/gaia_auth_util.h" |
57 #include "google_apis/gaia/gaia_constants.h" | 57 #include "google_apis/gaia/gaia_constants.h" |
58 #include "net/base/url_util.h" | 58 #include "net/base/url_util.h" |
59 #include "ui/base/l10n/l10n_util.h" | 59 #include "ui/base/l10n/l10n_util.h" |
60 | 60 |
61 #if defined(OS_CHROMEOS) | 61 #if defined(OS_CHROMEOS) |
62 #include "components/signin/core/browser/signin_manager_base.h" | 62 #include "components/signin/core/browser/signin_manager_base.h" |
(...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
945 page, args); | 945 page, args); |
946 | 946 |
947 // Make sure the tab used for the Gaia sign in does not cover the settings | 947 // Make sure the tab used for the Gaia sign in does not cover the settings |
948 // tab. | 948 // tab. |
949 FocusUI(); | 949 FocusUI(); |
950 } | 950 } |
951 | 951 |
952 LoginUIService* SyncSetupHandler::GetLoginUIService() const { | 952 LoginUIService* SyncSetupHandler::GetLoginUIService() const { |
953 return LoginUIServiceFactory::GetForProfile(GetProfile()); | 953 return LoginUIServiceFactory::GetForProfile(GetProfile()); |
954 } | 954 } |
OLD | NEW |