| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 virtual void UpdateNotificationArea() OVERRIDE; | 69 virtual void UpdateNotificationArea() OVERRIDE; |
| 70 virtual void UpdateSection(DialogSection section) OVERRIDE; | 70 virtual void UpdateSection(DialogSection section) OVERRIDE; |
| 71 virtual void GetUserInput(DialogSection section, | 71 virtual void GetUserInput(DialogSection section, |
| 72 DetailOutputMap* output) OVERRIDE; | 72 DetailOutputMap* output) OVERRIDE; |
| 73 virtual string16 GetCvc() OVERRIDE; | 73 virtual string16 GetCvc() OVERRIDE; |
| 74 virtual bool UseBillingForShipping() OVERRIDE; | 74 virtual bool UseBillingForShipping() OVERRIDE; |
| 75 virtual bool SaveDetailsLocally() OVERRIDE; | 75 virtual bool SaveDetailsLocally() OVERRIDE; |
| 76 virtual const content::NavigationController& ShowSignIn() OVERRIDE; | 76 virtual const content::NavigationController& ShowSignIn() OVERRIDE; |
| 77 virtual void HideSignIn() OVERRIDE; | 77 virtual void HideSignIn() OVERRIDE; |
| 78 virtual void UpdateProgressBar(double value) OVERRIDE; | 78 virtual void UpdateProgressBar(double value) OVERRIDE; |
| 79 virtual void ModelChanged() OVERRIDE; |
| 79 | 80 |
| 80 // views::DialogDelegate implementation: | 81 // views::DialogDelegate implementation: |
| 81 virtual string16 GetWindowTitle() const OVERRIDE; | 82 virtual string16 GetWindowTitle() const OVERRIDE; |
| 82 virtual void WindowClosing() OVERRIDE; | 83 virtual void WindowClosing() OVERRIDE; |
| 83 virtual void DeleteDelegate() OVERRIDE; | 84 virtual void DeleteDelegate() OVERRIDE; |
| 84 virtual views::Widget* GetWidget() OVERRIDE; | 85 virtual views::Widget* GetWidget() OVERRIDE; |
| 85 virtual const views::Widget* GetWidget() const OVERRIDE; | 86 virtual const views::Widget* GetWidget() const OVERRIDE; |
| 86 virtual views::View* GetContentsView() OVERRIDE; | 87 virtual views::View* GetContentsView() OVERRIDE; |
| 87 virtual string16 GetDialogButtonLabel(ui::DialogButton button) const OVERRIDE; | 88 virtual string16 GetDialogButtonLabel(ui::DialogButton button) const OVERRIDE; |
| 88 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE; | 89 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE; |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 | 382 |
| 382 // The focus manager for |window_|. | 383 // The focus manager for |window_|. |
| 383 views::FocusManager* focus_manager_; | 384 views::FocusManager* focus_manager_; |
| 384 | 385 |
| 385 DISALLOW_COPY_AND_ASSIGN(AutofillDialogViews); | 386 DISALLOW_COPY_AND_ASSIGN(AutofillDialogViews); |
| 386 }; | 387 }; |
| 387 | 388 |
| 388 } // namespace autofill | 389 } // namespace autofill |
| 389 | 390 |
| 390 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ | 391 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ |
| OLD | NEW |