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 <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 virtual ~AutofillDialogControllerImpl(); | 57 virtual ~AutofillDialogControllerImpl(); |
58 | 58 |
59 void Show(); | 59 void Show(); |
60 void Hide(); | 60 void Hide(); |
61 | 61 |
62 // AutofillDialogController implementation. | 62 // AutofillDialogController implementation. |
63 virtual string16 DialogTitle() const OVERRIDE; | 63 virtual string16 DialogTitle() const OVERRIDE; |
64 virtual string16 AccountChooserText() const OVERRIDE; | 64 virtual string16 AccountChooserText() const OVERRIDE; |
65 virtual string16 EditSuggestionText() const OVERRIDE; | 65 virtual string16 EditSuggestionText() const OVERRIDE; |
66 virtual string16 UseBillingForShippingText() const OVERRIDE; | 66 virtual string16 UseBillingForShippingText() const OVERRIDE; |
67 virtual string16 WalletOptionText() const OVERRIDE; | |
68 virtual string16 CancelButtonText() const OVERRIDE; | 67 virtual string16 CancelButtonText() const OVERRIDE; |
69 virtual string16 ConfirmButtonText() const OVERRIDE; | 68 virtual string16 ConfirmButtonText() const OVERRIDE; |
70 virtual string16 SaveLocallyText() const OVERRIDE; | 69 virtual string16 SaveLocallyText() const OVERRIDE; |
71 virtual string16 CancelSignInText() const OVERRIDE; | 70 virtual string16 CancelSignInText() const OVERRIDE; |
72 virtual string16 ProgressBarText() const OVERRIDE; | 71 virtual string16 ProgressBarText() const OVERRIDE; |
73 virtual DialogSignedInState SignedInState() const OVERRIDE; | 72 virtual DialogSignedInState SignedInState() const OVERRIDE; |
74 virtual bool CanPayWithWallet() const OVERRIDE; | 73 virtual bool CanPayWithWallet() const OVERRIDE; |
75 virtual bool AccountChooserEnabled() const OVERRIDE; | 74 virtual bool AccountChooserEnabled() const OVERRIDE; |
76 virtual const DetailInputs& RequestedFieldsForSection(DialogSection section) | 75 virtual const DetailInputs& RequestedFieldsForSection(DialogSection section) |
77 const OVERRIDE; | 76 const OVERRIDE; |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 | 289 |
291 // A NotificationRegistrar for tracking the completion of sign-in. | 290 // A NotificationRegistrar for tracking the completion of sign-in. |
292 content::NotificationRegistrar registrar_; | 291 content::NotificationRegistrar registrar_; |
293 | 292 |
294 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); | 293 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); |
295 }; | 294 }; |
296 | 295 |
297 } // namespace autofill | 296 } // namespace autofill |
298 | 297 |
299 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ | 298 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ |
OLD | NEW |