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/views/autofill/autofill_dialog_views.h" | 5 #include "chrome/browser/ui/views/autofill/autofill_dialog_views.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
11 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
12 #include "chrome/browser/ui/autofill/autofill_dialog_controller.h" | 12 #include "chrome/browser/ui/autofill/autofill_dialog_controller.h" |
13 #include "chrome/browser/ui/autofill/autofill_dialog_sign_in_delegate.h" | 13 #include "chrome/browser/ui/autofill/autofill_dialog_sign_in_delegate.h" |
14 #include "chrome/browser/ui/views/constrained_window_views.h" | 14 #include "chrome/browser/ui/views/constrained_window_views.h" |
15 #include "components/autofill/browser/autofill_type.h" | 15 #include "components/autofill/browser/autofill_type.h" |
16 #include "components/autofill/browser/wallet/wallet_service_url.h" | 16 #include "components/autofill/browser/wallet/wallet_service_url.h" |
17 #include "components/web_modal/web_contents_modal_dialog_manager.h" | 17 #include "components/web_modal/web_contents_modal_dialog_manager.h" |
18 #include "components/web_modal/web_contents_modal_dialog_manager_delegate.h" | 18 #include "components/web_modal/web_contents_modal_dialog_manager_delegate.h" |
19 #include "content/public/browser/native_web_keyboard_event.h" | 19 #include "content/public/browser/native_web_keyboard_event.h" |
20 #include "content/public/browser/navigation_controller.h" | 20 #include "content/public/browser/navigation_controller.h" |
(...skipping 1815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1836 AutofillDialogViews::DetailsGroup::DetailsGroup(DialogSection section) | 1836 AutofillDialogViews::DetailsGroup::DetailsGroup(DialogSection section) |
1837 : section(section), | 1837 : section(section), |
1838 container(NULL), | 1838 container(NULL), |
1839 manual_input(NULL), | 1839 manual_input(NULL), |
1840 suggested_info(NULL), | 1840 suggested_info(NULL), |
1841 suggested_button(NULL) {} | 1841 suggested_button(NULL) {} |
1842 | 1842 |
1843 AutofillDialogViews::DetailsGroup::~DetailsGroup() {} | 1843 AutofillDialogViews::DetailsGroup::~DetailsGroup() {} |
1844 | 1844 |
1845 } // namespace autofill | 1845 } // namespace autofill |
OLD | NEW |