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 <stddef.h> |
| 8 |
7 #include <utility> | 9 #include <utility> |
8 | 10 |
9 #include "base/bind.h" | 11 #include "base/bind.h" |
10 #include "base/location.h" | 12 #include "base/location.h" |
| 13 #include "base/macros.h" |
11 #include "base/strings/utf_string_conversions.h" | 14 #include "base/strings/utf_string_conversions.h" |
12 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
13 #include "chrome/browser/ui/autofill/autofill_dialog_view_delegate.h" | 16 #include "chrome/browser/ui/autofill/autofill_dialog_view_delegate.h" |
14 #include "chrome/browser/ui/autofill/loading_animation.h" | 17 #include "chrome/browser/ui/autofill/loading_animation.h" |
15 #include "chrome/browser/ui/views/autofill/expanding_textfield.h" | 18 #include "chrome/browser/ui/views/autofill/expanding_textfield.h" |
16 #include "chrome/browser/ui/views/autofill/info_bubble.h" | 19 #include "chrome/browser/ui/views/autofill/info_bubble.h" |
17 #include "chrome/browser/ui/views/autofill/tooltip_icon.h" | 20 #include "chrome/browser/ui/views/autofill/tooltip_icon.h" |
18 #include "components/autofill/core/browser/autofill_type.h" | 21 #include "components/autofill/core/browser/autofill_type.h" |
19 #include "components/constrained_window/constrained_window_views.h" | 22 #include "components/constrained_window/constrained_window_views.h" |
20 #include "components/web_modal/web_contents_modal_dialog_host.h" | 23 #include "components/web_modal/web_contents_modal_dialog_host.h" |
(...skipping 1880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1901 AutofillDialogViews::DetailsGroup::DetailsGroup(DialogSection section) | 1904 AutofillDialogViews::DetailsGroup::DetailsGroup(DialogSection section) |
1902 : section(section), | 1905 : section(section), |
1903 container(NULL), | 1906 container(NULL), |
1904 manual_input(NULL), | 1907 manual_input(NULL), |
1905 suggested_info(NULL), | 1908 suggested_info(NULL), |
1906 suggested_button(NULL) {} | 1909 suggested_button(NULL) {} |
1907 | 1910 |
1908 AutofillDialogViews::DetailsGroup::~DetailsGroup() {} | 1911 AutofillDialogViews::DetailsGroup::~DetailsGroup() {} |
1909 | 1912 |
1910 } // namespace autofill | 1913 } // namespace autofill |
OLD | NEW |