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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 public views::TextfieldController, | 56 public views::TextfieldController, |
57 public views::FocusChangeListener, | 57 public views::FocusChangeListener, |
58 public views::LinkListener { | 58 public views::LinkListener { |
59 public: | 59 public: |
60 explicit AutofillDialogViews(AutofillDialogController* controller); | 60 explicit AutofillDialogViews(AutofillDialogController* controller); |
61 virtual ~AutofillDialogViews(); | 61 virtual ~AutofillDialogViews(); |
62 | 62 |
63 // AutofillDialogView implementation: | 63 // AutofillDialogView implementation: |
64 virtual void Show() OVERRIDE; | 64 virtual void Show() OVERRIDE; |
65 virtual void Hide() OVERRIDE; | 65 virtual void Hide() OVERRIDE; |
| 66 virtual void UpdateAccountChooser() OVERRIDE; |
66 virtual void UpdateNotificationArea() OVERRIDE; | 67 virtual void UpdateNotificationArea() OVERRIDE; |
67 virtual void UpdateSection(DialogSection section) OVERRIDE; | 68 virtual void UpdateSection(DialogSection section) OVERRIDE; |
68 virtual void GetUserInput(DialogSection section, | 69 virtual void GetUserInput(DialogSection section, |
69 DetailOutputMap* output) OVERRIDE; | 70 DetailOutputMap* output) OVERRIDE; |
70 virtual bool UseBillingForShipping() OVERRIDE; | 71 virtual bool UseBillingForShipping() OVERRIDE; |
71 virtual bool SaveDetailsLocally() OVERRIDE; | 72 virtual bool SaveDetailsLocally() OVERRIDE; |
72 virtual const content::NavigationController& ShowSignIn() OVERRIDE; | 73 virtual const content::NavigationController& ShowSignIn() OVERRIDE; |
73 virtual void HideSignIn() OVERRIDE; | 74 virtual void HideSignIn() OVERRIDE; |
74 | 75 |
75 // views::DialogDelegate implementation: | 76 // views::DialogDelegate implementation: |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 | 324 |
324 // The focus manager for |window_|. | 325 // The focus manager for |window_|. |
325 views::FocusManager* focus_manager_; | 326 views::FocusManager* focus_manager_; |
326 | 327 |
327 DISALLOW_COPY_AND_ASSIGN(AutofillDialogViews); | 328 DISALLOW_COPY_AND_ASSIGN(AutofillDialogViews); |
328 }; | 329 }; |
329 | 330 |
330 } // namespace autofill | 331 } // namespace autofill |
331 | 332 |
332 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ | 333 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ |
OLD | NEW |