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 "chrome/browser/ui/autofill/autofill_dialog_controller.h" | 10 #include "chrome/browser/ui/autofill/autofill_dialog_controller.h" |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 public views::TextfieldController, | 57 public views::TextfieldController, |
58 public views::FocusChangeListener, | 58 public views::FocusChangeListener, |
59 public views::LinkListener { | 59 public views::LinkListener { |
60 public: | 60 public: |
61 explicit AutofillDialogViews(AutofillDialogController* controller); | 61 explicit AutofillDialogViews(AutofillDialogController* controller); |
62 virtual ~AutofillDialogViews(); | 62 virtual ~AutofillDialogViews(); |
63 | 63 |
64 // AutofillDialogView implementation: | 64 // AutofillDialogView implementation: |
65 virtual void Show() OVERRIDE; | 65 virtual void Show() OVERRIDE; |
66 virtual void Hide() OVERRIDE; | 66 virtual void Hide() OVERRIDE; |
| 67 virtual void UpdateAccountChooser() OVERRIDE; |
67 virtual void UpdateNotificationArea() OVERRIDE; | 68 virtual void UpdateNotificationArea() OVERRIDE; |
68 virtual void UpdateSection(DialogSection section) OVERRIDE; | 69 virtual void UpdateSection(DialogSection section) OVERRIDE; |
69 virtual void GetUserInput(DialogSection section, | 70 virtual void GetUserInput(DialogSection section, |
70 DetailOutputMap* output) OVERRIDE; | 71 DetailOutputMap* output) OVERRIDE; |
71 virtual bool UseBillingForShipping() OVERRIDE; | 72 virtual bool UseBillingForShipping() OVERRIDE; |
72 virtual bool SaveDetailsLocally() OVERRIDE; | 73 virtual bool SaveDetailsLocally() OVERRIDE; |
73 virtual const content::NavigationController& ShowSignIn() OVERRIDE; | 74 virtual const content::NavigationController& ShowSignIn() OVERRIDE; |
74 virtual void HideSignIn() OVERRIDE; | 75 virtual void HideSignIn() OVERRIDE; |
75 virtual void UpdateProgressBar(double value) OVERRIDE; | 76 virtual void UpdateProgressBar(double value) OVERRIDE; |
76 | 77 |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 | 343 |
343 // The focus manager for |window_|. | 344 // The focus manager for |window_|. |
344 views::FocusManager* focus_manager_; | 345 views::FocusManager* focus_manager_; |
345 | 346 |
346 DISALLOW_COPY_AND_ASSIGN(AutofillDialogViews); | 347 DISALLOW_COPY_AND_ASSIGN(AutofillDialogViews); |
347 }; | 348 }; |
348 | 349 |
349 } // namespace autofill | 350 } // namespace autofill |
350 | 351 |
351 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ | 352 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ |
OLD | NEW |