OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef CHROME_BROWSER_UI_VIEWS_AUTOFILL_CARD_UNMASK_PROMPT_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_AUTOFILL_CARD_UNMASK_PROMPT_VIEWS_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_CARD_UNMASK_PROMPT_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_CARD_UNMASK_PROMPT_VIEWS_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 10 #include "base/macros.h" |
8 #include "chrome/browser/ui/autofill/autofill_dialog_models.h" | 11 #include "chrome/browser/ui/autofill/autofill_dialog_models.h" |
9 #include "components/autofill/core/browser/ui/card_unmask_prompt_view.h" | 12 #include "components/autofill/core/browser/ui/card_unmask_prompt_view.h" |
10 #include "ui/gfx/animation/animation_delegate.h" | 13 #include "ui/gfx/animation/animation_delegate.h" |
11 #include "ui/gfx/animation/slide_animation.h" | 14 #include "ui/gfx/animation/slide_animation.h" |
12 #include "ui/views/controls/combobox/combobox_listener.h" | 15 #include "ui/views/controls/combobox/combobox_listener.h" |
13 #include "ui/views/controls/link_listener.h" | 16 #include "ui/views/controls/link_listener.h" |
14 #include "ui/views/controls/textfield/textfield_controller.h" | 17 #include "ui/views/controls/textfield/textfield_controller.h" |
15 #include "ui/views/window/dialog_delegate.h" | 18 #include "ui/views/window/dialog_delegate.h" |
16 | 19 |
17 namespace content { | 20 namespace content { |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 gfx::SlideAnimation overlay_animation_; | 160 gfx::SlideAnimation overlay_animation_; |
158 | 161 |
159 base::WeakPtrFactory<CardUnmaskPromptViews> weak_ptr_factory_; | 162 base::WeakPtrFactory<CardUnmaskPromptViews> weak_ptr_factory_; |
160 | 163 |
161 DISALLOW_COPY_AND_ASSIGN(CardUnmaskPromptViews); | 164 DISALLOW_COPY_AND_ASSIGN(CardUnmaskPromptViews); |
162 }; | 165 }; |
163 | 166 |
164 } // namespace autofill | 167 } // namespace autofill |
165 | 168 |
166 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_CARD_UNMASK_PROMPT_VIEWS_H_ | 169 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_CARD_UNMASK_PROMPT_VIEWS_H_ |
OLD | NEW |