| Index: chrome/browser/ui/views/autofill/autofill_dialog_views.h
|
| diff --git a/chrome/browser/ui/views/autofill/autofill_dialog_views.h b/chrome/browser/ui/views/autofill/autofill_dialog_views.h
|
| index abc1c6363da63570db1a92af51cabe75e78681ab..9ec1952dccc10bec41313c41ae2416492acb7599 100644
|
| --- a/chrome/browser/ui/views/autofill/autofill_dialog_views.h
|
| +++ b/chrome/browser/ui/views/autofill/autofill_dialog_views.h
|
| @@ -75,6 +75,7 @@ class AutofillDialogViews : public AutofillDialogView,
|
| virtual const content::NavigationController& ShowSignIn() OVERRIDE;
|
| virtual void HideSignIn() OVERRIDE;
|
| virtual void UpdateProgressBar(double value) OVERRIDE;
|
| + virtual void UpdateFootnote() OVERRIDE;
|
|
|
| // views::DialogDelegate implementation:
|
| virtual string16 GetWindowTitle() const OVERRIDE;
|
| @@ -370,6 +371,13 @@ class AutofillDialogViews : public AutofillDialogView,
|
| // Progress bar for displaying Autocheckout progress.
|
| AutocheckoutProgressBar* autocheckout_progress_bar_;
|
|
|
| + // View shown when accepting of a new Terms of Service is required. Lives
|
| + // below the Cancel/Submit buttons.
|
| + views::View* footnote_view_;
|
| +
|
| + views::Link* terms_of_service_link_;
|
| + views::Link* privacy_policy_link_;
|
| +
|
| // The focus manager for |window_|.
|
| views::FocusManager* focus_manager_;
|
|
|
|
|