| 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/location.h" | 10 #include "base/location.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #include "third_party/skia/include/core/SkColor.h" | 30 #include "third_party/skia/include/core/SkColor.h" |
| 31 #include "ui/base/l10n/l10n_util.h" | 31 #include "ui/base/l10n/l10n_util.h" |
| 32 #include "ui/base/models/combobox_model.h" | 32 #include "ui/base/models/combobox_model.h" |
| 33 #include "ui/base/models/menu_model.h" | 33 #include "ui/base/models/menu_model.h" |
| 34 #include "ui/base/resource/resource_bundle.h" | 34 #include "ui/base/resource/resource_bundle.h" |
| 35 #include "ui/events/event_handler.h" | 35 #include "ui/events/event_handler.h" |
| 36 #include "ui/gfx/animation/animation_delegate.h" | 36 #include "ui/gfx/animation/animation_delegate.h" |
| 37 #include "ui/gfx/canvas.h" | 37 #include "ui/gfx/canvas.h" |
| 38 #include "ui/gfx/color_utils.h" | 38 #include "ui/gfx/color_utils.h" |
| 39 #include "ui/gfx/font_list.h" | 39 #include "ui/gfx/font_list.h" |
| 40 #include "ui/gfx/geometry/point.h" |
| 40 #include "ui/gfx/path.h" | 41 #include "ui/gfx/path.h" |
| 41 #include "ui/gfx/point.h" | |
| 42 #include "ui/gfx/skia_util.h" | 42 #include "ui/gfx/skia_util.h" |
| 43 #include "ui/views/background.h" | 43 #include "ui/views/background.h" |
| 44 #include "ui/views/border.h" | 44 #include "ui/views/border.h" |
| 45 #include "ui/views/bubble/bubble_border.h" | 45 #include "ui/views/bubble/bubble_border.h" |
| 46 #include "ui/views/bubble/bubble_frame_view.h" | 46 #include "ui/views/bubble/bubble_frame_view.h" |
| 47 #include "ui/views/controls/button/blue_button.h" | 47 #include "ui/views/controls/button/blue_button.h" |
| 48 #include "ui/views/controls/button/checkbox.h" | 48 #include "ui/views/controls/button/checkbox.h" |
| 49 #include "ui/views/controls/button/label_button.h" | 49 #include "ui/views/controls/button/label_button.h" |
| 50 #include "ui/views/controls/button/label_button_border.h" | 50 #include "ui/views/controls/button/label_button_border.h" |
| 51 #include "ui/views/controls/button/menu_button.h" | 51 #include "ui/views/controls/button/menu_button.h" |
| (...skipping 2449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2501 AutofillDialogViews::DetailsGroup::DetailsGroup(DialogSection section) | 2501 AutofillDialogViews::DetailsGroup::DetailsGroup(DialogSection section) |
| 2502 : section(section), | 2502 : section(section), |
| 2503 container(NULL), | 2503 container(NULL), |
| 2504 manual_input(NULL), | 2504 manual_input(NULL), |
| 2505 suggested_info(NULL), | 2505 suggested_info(NULL), |
| 2506 suggested_button(NULL) {} | 2506 suggested_button(NULL) {} |
| 2507 | 2507 |
| 2508 AutofillDialogViews::DetailsGroup::~DetailsGroup() {} | 2508 AutofillDialogViews::DetailsGroup::~DetailsGroup() {} |
| 2509 | 2509 |
| 2510 } // namespace autofill | 2510 } // namespace autofill |
| OLD | NEW |