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_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 public: | 66 public: |
67 explicit AutofillDialogViews(AutofillDialogController* controller); | 67 explicit AutofillDialogViews(AutofillDialogController* controller); |
68 virtual ~AutofillDialogViews(); | 68 virtual ~AutofillDialogViews(); |
69 | 69 |
70 // AutofillDialogView implementation: | 70 // AutofillDialogView implementation: |
71 virtual void Show() OVERRIDE; | 71 virtual void Show() OVERRIDE; |
72 virtual void Hide() OVERRIDE; | 72 virtual void Hide() OVERRIDE; |
73 virtual void UpdateAccountChooser() OVERRIDE; | 73 virtual void UpdateAccountChooser() OVERRIDE; |
74 virtual void UpdateButtonStrip() OVERRIDE; | 74 virtual void UpdateButtonStrip() OVERRIDE; |
75 virtual void UpdateNotificationArea() OVERRIDE; | 75 virtual void UpdateNotificationArea() OVERRIDE; |
76 virtual void UpdateSection(DialogSection section) OVERRIDE; | 76 virtual void UpdateSection(DialogSection section, |
| 77 UserInputAction action) OVERRIDE; |
77 virtual void GetUserInput(DialogSection section, | 78 virtual void GetUserInput(DialogSection section, |
78 DetailOutputMap* output) OVERRIDE; | 79 DetailOutputMap* output) OVERRIDE; |
79 virtual string16 GetCvc() OVERRIDE; | 80 virtual string16 GetCvc() OVERRIDE; |
80 virtual bool UseBillingForShipping() OVERRIDE; | 81 virtual bool UseBillingForShipping() OVERRIDE; |
81 virtual bool SaveDetailsInWallet() OVERRIDE; | 82 virtual bool SaveDetailsInWallet() OVERRIDE; |
82 virtual bool SaveDetailsLocally() OVERRIDE; | 83 virtual bool SaveDetailsLocally() OVERRIDE; |
83 virtual const content::NavigationController* ShowSignIn() OVERRIDE; | 84 virtual const content::NavigationController* ShowSignIn() OVERRIDE; |
84 virtual void HideSignIn() OVERRIDE; | 85 virtual void HideSignIn() OVERRIDE; |
85 virtual void UpdateProgressBar(double value) OVERRIDE; | 86 virtual void UpdateProgressBar(double value) OVERRIDE; |
86 virtual void ModelChanged() OVERRIDE; | 87 virtual void ModelChanged() OVERRIDE; |
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
490 | 491 |
491 // The focus manager for |window_|. | 492 // The focus manager for |window_|. |
492 views::FocusManager* focus_manager_; | 493 views::FocusManager* focus_manager_; |
493 | 494 |
494 DISALLOW_COPY_AND_ASSIGN(AutofillDialogViews); | 495 DISALLOW_COPY_AND_ASSIGN(AutofillDialogViews); |
495 }; | 496 }; |
496 | 497 |
497 } // namespace autofill | 498 } // namespace autofill |
498 | 499 |
499 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ | 500 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ |
OLD | NEW |