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/autofill/autofill_dialog_controller_impl.h" | 5 #include "chrome/browser/ui/autofill/autofill_dialog_controller_impl.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 #include "components/autofill/content/browser/wallet/wallet_signin_helper.h" | 56 #include "components/autofill/content/browser/wallet/wallet_signin_helper.h" |
57 #include "components/autofill/core/browser/autofill_country.h" | 57 #include "components/autofill/core/browser/autofill_country.h" |
58 #include "components/autofill/core/browser/autofill_data_model.h" | 58 #include "components/autofill/core/browser/autofill_data_model.h" |
59 #include "components/autofill/core/browser/autofill_manager.h" | 59 #include "components/autofill/core/browser/autofill_manager.h" |
60 #include "components/autofill/core/browser/autofill_type.h" | 60 #include "components/autofill/core/browser/autofill_type.h" |
61 #include "components/autofill/core/browser/personal_data_manager.h" | 61 #include "components/autofill/core/browser/personal_data_manager.h" |
62 #include "components/autofill/core/browser/phone_number_i18n.h" | 62 #include "components/autofill/core/browser/phone_number_i18n.h" |
63 #include "components/autofill/core/browser/validation.h" | 63 #include "components/autofill/core/browser/validation.h" |
64 #include "components/autofill/core/common/autofill_pref_names.h" | 64 #include "components/autofill/core/common/autofill_pref_names.h" |
65 #include "components/autofill/core/common/form_data.h" | 65 #include "components/autofill/core/common/form_data.h" |
66 #include "components/user_prefs/pref_registry_syncable.h" | 66 #include "components/pref_registry/pref_registry_syncable.h" |
67 #include "content/public/browser/browser_thread.h" | 67 #include "content/public/browser/browser_thread.h" |
68 #include "content/public/browser/geolocation_provider.h" | 68 #include "content/public/browser/geolocation_provider.h" |
69 #include "content/public/browser/navigation_controller.h" | 69 #include "content/public/browser/navigation_controller.h" |
70 #include "content/public/browser/navigation_details.h" | 70 #include "content/public/browser/navigation_details.h" |
71 #include "content/public/browser/navigation_entry.h" | 71 #include "content/public/browser/navigation_entry.h" |
72 #include "content/public/browser/notification_service.h" | 72 #include "content/public/browser/notification_service.h" |
73 #include "content/public/browser/notification_types.h" | 73 #include "content/public/browser/notification_types.h" |
74 #include "content/public/browser/render_view_host.h" | 74 #include "content/public/browser/render_view_host.h" |
75 #include "content/public/browser/web_contents.h" | 75 #include "content/public/browser/web_contents.h" |
76 #include "content/public/common/url_constants.h" | 76 #include "content/public/common/url_constants.h" |
(...skipping 4023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4100 view_->UpdateButtonStrip(); | 4100 view_->UpdateButtonStrip(); |
4101 } | 4101 } |
4102 | 4102 |
4103 void AutofillDialogControllerImpl::FetchWalletCookie() { | 4103 void AutofillDialogControllerImpl::FetchWalletCookie() { |
4104 net::URLRequestContextGetter* request_context = profile_->GetRequestContext(); | 4104 net::URLRequestContextGetter* request_context = profile_->GetRequestContext(); |
4105 signin_helper_.reset(new wallet::WalletSigninHelper(this, request_context)); | 4105 signin_helper_.reset(new wallet::WalletSigninHelper(this, request_context)); |
4106 signin_helper_->StartWalletCookieValueFetch(); | 4106 signin_helper_->StartWalletCookieValueFetch(); |
4107 } | 4107 } |
4108 | 4108 |
4109 } // namespace autofill | 4109 } // namespace autofill |
OLD | NEW |