Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(105)

Side by Side Diff: chrome/browser/ui/autofill/autofill_dialog_view.h

Issue 12225095: Interactive autofill: Adds footnote view to accept legal documents in the UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_AUTOFILL_AUTOFILL_DIALOG_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_H_ 6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_H_
7 7
8 #include "chrome/browser/ui/autofill/autofill_dialog_controller.h" 8 #include "chrome/browser/ui/autofill/autofill_dialog_controller.h"
9 9
10 namespace content { 10 namespace content {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 // Returns a NotificationSource to be used to monitor for sign-in completion. 53 // Returns a NotificationSource to be used to monitor for sign-in completion.
54 virtual const content::NavigationController& ShowSignIn() = 0; 54 virtual const content::NavigationController& ShowSignIn() = 0;
55 55
56 // Closes out any signin UI and returns to normal operation. 56 // Closes out any signin UI and returns to normal operation.
57 virtual void HideSignIn() = 0; 57 virtual void HideSignIn() = 0;
58 58
59 // Updates the progress bar based on the Autocheckout progress. |value| should 59 // Updates the progress bar based on the Autocheckout progress. |value| should
60 // be in [0.0, 1.0]. 60 // be in [0.0, 1.0].
61 virtual void UpdateProgressBar(double value) = 0; 61 virtual void UpdateProgressBar(double value) = 0;
62 62
63 // Updates the footnote view (where the Terms Of Service live).
64 virtual void UpdateFootnote() = 0;
65
63 // Factory function to create the dialog (implemented once per view 66 // Factory function to create the dialog (implemented once per view
64 // implementation). |controller| will own the created dialog. 67 // implementation). |controller| will own the created dialog.
65 static AutofillDialogView* Create(AutofillDialogController* controller); 68 static AutofillDialogView* Create(AutofillDialogController* controller);
66 }; 69 };
67 70
68 } // namespace autofill 71 } // namespace autofill
69 72
70 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_H_ 73 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698