| 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; | |
| 68 virtual void UpdateNotificationArea() OVERRIDE; | 67 virtual void UpdateNotificationArea() OVERRIDE; |
| 69 virtual void UpdateSection(DialogSection section) OVERRIDE; | 68 virtual void UpdateSection(DialogSection section) OVERRIDE; |
| 70 virtual void GetUserInput(DialogSection section, | 69 virtual void GetUserInput(DialogSection section, |
| 71 DetailOutputMap* output) OVERRIDE; | 70 DetailOutputMap* output) OVERRIDE; |
| 72 virtual bool UseBillingForShipping() OVERRIDE; | 71 virtual bool UseBillingForShipping() OVERRIDE; |
| 73 virtual bool SaveDetailsLocally() OVERRIDE; | 72 virtual bool SaveDetailsLocally() OVERRIDE; |
| 74 virtual const content::NavigationController& ShowSignIn() OVERRIDE; | 73 virtual const content::NavigationController& ShowSignIn() OVERRIDE; |
| 75 virtual void HideSignIn() OVERRIDE; | 74 virtual void HideSignIn() OVERRIDE; |
| 76 virtual void UpdateProgressBar(double value) OVERRIDE; | 75 virtual void UpdateProgressBar(double value) OVERRIDE; |
| 77 | 76 |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 | 342 |
| 344 // The focus manager for |window_|. | 343 // The focus manager for |window_|. |
| 345 views::FocusManager* focus_manager_; | 344 views::FocusManager* focus_manager_; |
| 346 | 345 |
| 347 DISALLOW_COPY_AND_ASSIGN(AutofillDialogViews); | 346 DISALLOW_COPY_AND_ASSIGN(AutofillDialogViews); |
| 348 }; | 347 }; |
| 349 | 348 |
| 350 } // namespace autofill | 349 } // namespace autofill |
| 351 | 350 |
| 352 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ | 351 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ |
| OLD | NEW |