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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 #include "content/public/browser/navigation_controller.h" | 70 #include "content/public/browser/navigation_controller.h" |
71 #include "content/public/browser/navigation_details.h" | 71 #include "content/public/browser/navigation_details.h" |
72 #include "content/public/browser/navigation_entry.h" | 72 #include "content/public/browser/navigation_entry.h" |
73 #include "content/public/browser/notification_service.h" | 73 #include "content/public/browser/notification_service.h" |
74 #include "content/public/browser/notification_types.h" | 74 #include "content/public/browser/notification_types.h" |
75 #include "content/public/browser/render_view_host.h" | 75 #include "content/public/browser/render_view_host.h" |
76 #include "content/public/browser/web_contents.h" | 76 #include "content/public/browser/web_contents.h" |
77 #include "content/public/browser/web_contents_view.h" | 77 #include "content/public/browser/web_contents_view.h" |
78 #include "content/public/common/url_constants.h" | 78 #include "content/public/common/url_constants.h" |
79 #include "grit/chromium_strings.h" | 79 #include "grit/chromium_strings.h" |
| 80 #include "grit/component_resources.h" |
80 #include "grit/component_strings.h" | 81 #include "grit/component_strings.h" |
81 #include "grit/generated_resources.h" | 82 #include "grit/generated_resources.h" |
82 #include "grit/libaddressinput_strings.h" | 83 #include "grit/libaddressinput_strings.h" |
83 #include "grit/platform_locale_settings.h" | 84 #include "grit/platform_locale_settings.h" |
84 #include "grit/theme_resources.h" | 85 #include "grit/theme_resources.h" |
85 #include "grit/webkit_resources.h" | |
86 #include "net/cert/cert_status_flags.h" | 86 #include "net/cert/cert_status_flags.h" |
87 #include "third_party/libaddressinput/chromium/chrome_downloader_impl.h" | 87 #include "third_party/libaddressinput/chromium/chrome_downloader_impl.h" |
88 #include "third_party/libaddressinput/chromium/chrome_storage_impl.h" | 88 #include "third_party/libaddressinput/chromium/chrome_storage_impl.h" |
89 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/addre
ss_data.h" | 89 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/addre
ss_data.h" |
90 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/addre
ss_problem.h" | 90 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/addre
ss_problem.h" |
91 #include "ui/base/base_window.h" | 91 #include "ui/base/base_window.h" |
92 #include "ui/base/l10n/l10n_util.h" | 92 #include "ui/base/l10n/l10n_util.h" |
93 #include "ui/base/models/combobox_model.h" | 93 #include "ui/base/models/combobox_model.h" |
94 #include "ui/base/resource/resource_bundle.h" | 94 #include "ui/base/resource/resource_bundle.h" |
95 #include "ui/events/event.h" | 95 #include "ui/events/event.h" |
(...skipping 3740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3836 view_->UpdateButtonStrip(); | 3836 view_->UpdateButtonStrip(); |
3837 } | 3837 } |
3838 | 3838 |
3839 void AutofillDialogControllerImpl::FetchWalletCookie() { | 3839 void AutofillDialogControllerImpl::FetchWalletCookie() { |
3840 net::URLRequestContextGetter* request_context = profile_->GetRequestContext(); | 3840 net::URLRequestContextGetter* request_context = profile_->GetRequestContext(); |
3841 signin_helper_.reset(new wallet::WalletSigninHelper(this, request_context)); | 3841 signin_helper_.reset(new wallet::WalletSigninHelper(this, request_context)); |
3842 signin_helper_->StartWalletCookieValueFetch(); | 3842 signin_helper_->StartWalletCookieValueFetch(); |
3843 } | 3843 } |
3844 | 3844 |
3845 } // namespace autofill | 3845 } // namespace autofill |
OLD | NEW |