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 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ | 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ |
6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ | 6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
52 } | 52 } |
53 | 53 |
54 namespace autofill { | 54 namespace autofill { |
55 | 55 |
56 class AutofillDataModel; | 56 class AutofillDataModel; |
57 class AutofillDialogView; | 57 class AutofillDialogView; |
58 class AutofillPopupControllerImpl; | 58 class AutofillPopupControllerImpl; |
59 class DataModelWrapper; | 59 class DataModelWrapper; |
60 class TestableAutofillDialogView; | 60 class TestableAutofillDialogView; |
61 | 61 |
62 namespace common { | |
63 class AutofillDialogInput; | |
64 } | |
65 | |
62 namespace risk { | 66 namespace risk { |
63 class Fingerprint; | 67 class Fingerprint; |
64 } | 68 } |
65 | 69 |
66 namespace wallet { | 70 namespace wallet { |
67 class WalletSigninHelper; | 71 class WalletSigninHelper; |
68 } | 72 } |
69 | 73 |
70 // This class drives the dialog that appears when a site uses the imperative | 74 // This class drives the dialog that appears when a site uses the imperative |
71 // autocomplete API to fill out a form. | 75 // autocomplete API to fill out a form. |
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
736 base::OneShotTimer<AutofillDialogControllerImpl> card_scrambling_delay_; | 740 base::OneShotTimer<AutofillDialogControllerImpl> card_scrambling_delay_; |
737 base::RepeatingTimer<AutofillDialogControllerImpl> card_scrambling_refresher_; | 741 base::RepeatingTimer<AutofillDialogControllerImpl> card_scrambling_refresher_; |
738 | 742 |
739 // An animation which controls the background fade when the card is done | 743 // An animation which controls the background fade when the card is done |
740 // scrambling. | 744 // scrambling. |
741 gfx::LinearAnimation card_generated_animation_; | 745 gfx::LinearAnimation card_generated_animation_; |
742 | 746 |
743 // A username string we display in the card scrambling/generated overlay. | 747 // A username string we display in the card scrambling/generated overlay. |
744 base::string16 submitted_cardholder_name_; | 748 base::string16 submitted_cardholder_name_; |
745 | 749 |
750 // An object for building inputs for autofill sections. | |
751 scoped_ptr<common::AutofillDialogInput> inputs_builder_; | |
Evan Stade
2013/10/02 00:57:19
I don't see any reason for this to be a member var
please use gerrit instead
2013/10/02 18:21:50
I've decided to make AutofillDialogControllerImpl
Evan Stade
2013/10/02 20:27:19
what state is the object going to hold?
| |
752 | |
746 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); | 753 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); |
747 }; | 754 }; |
748 | 755 |
749 } // namespace autofill | 756 } // namespace autofill |
750 | 757 |
751 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ | 758 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ |
OLD | NEW |