| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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/inline_login_handler_impl.h" | 5 #include "chrome/browser/ui/webui/signin/inline_login_handler_impl.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 #include "components/browser_sync/profile_sync_service.h" | 53 #include "components/browser_sync/profile_sync_service.h" |
| 54 #include "components/prefs/pref_service.h" | 54 #include "components/prefs/pref_service.h" |
| 55 #include "components/signin/core/browser/about_signin_internals.h" | 55 #include "components/signin/core/browser/about_signin_internals.h" |
| 56 #include "components/signin/core/browser/account_tracker_service.h" | 56 #include "components/signin/core/browser/account_tracker_service.h" |
| 57 #include "components/signin/core/browser/profile_oauth2_token_service.h" | 57 #include "components/signin/core/browser/profile_oauth2_token_service.h" |
| 58 #include "components/signin/core/browser/signin_error_controller.h" | 58 #include "components/signin/core/browser/signin_error_controller.h" |
| 59 #include "components/signin/core/browser/signin_header_helper.h" | 59 #include "components/signin/core/browser/signin_header_helper.h" |
| 60 #include "components/signin/core/browser/signin_investigator.h" | 60 #include "components/signin/core/browser/signin_investigator.h" |
| 61 #include "components/signin/core/browser/signin_metrics.h" | 61 #include "components/signin/core/browser/signin_metrics.h" |
| 62 #include "components/signin/core/common/signin_pref_names.h" | 62 #include "components/signin/core/common/signin_pref_names.h" |
| 63 #include "components/strings/grit/components_strings.h" | |
| 64 #include "content/public/browser/navigation_handle.h" | 63 #include "content/public/browser/navigation_handle.h" |
| 65 #include "content/public/browser/storage_partition.h" | 64 #include "content/public/browser/storage_partition.h" |
| 66 #include "content/public/browser/web_ui.h" | 65 #include "content/public/browser/web_ui.h" |
| 67 #include "google_apis/gaia/gaia_auth_fetcher.h" | 66 #include "google_apis/gaia/gaia_auth_fetcher.h" |
| 68 #include "google_apis/gaia/gaia_auth_util.h" | 67 #include "google_apis/gaia/gaia_auth_util.h" |
| 69 #include "google_apis/gaia/gaia_constants.h" | 68 #include "google_apis/gaia/gaia_constants.h" |
| 70 #include "google_apis/gaia/gaia_urls.h" | 69 #include "google_apis/gaia/gaia_urls.h" |
| 71 #include "net/base/url_util.h" | 70 #include "net/base/url_util.h" |
| 72 #include "ui/base/l10n/l10n_util.h" | 71 #include "ui/base/l10n/l10n_util.h" |
| 73 | 72 |
| (...skipping 801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 875 | 874 |
| 876 if (show_account_management) { | 875 if (show_account_management) { |
| 877 browser->window()->ShowAvatarBubbleFromAvatarButton( | 876 browser->window()->ShowAvatarBubbleFromAvatarButton( |
| 878 BrowserWindow::AVATAR_BUBBLE_MODE_ACCOUNT_MANAGEMENT, | 877 BrowserWindow::AVATAR_BUBBLE_MODE_ACCOUNT_MANAGEMENT, |
| 879 signin::ManageAccountsParams(), | 878 signin::ManageAccountsParams(), |
| 880 signin_metrics::AccessPoint::ACCESS_POINT_AVATAR_BUBBLE_SIGN_IN, | 879 signin_metrics::AccessPoint::ACCESS_POINT_AVATAR_BUBBLE_SIGN_IN, |
| 881 false); | 880 false); |
| 882 } | 881 } |
| 883 } | 882 } |
| 884 } | 883 } |
| OLD | NEW |