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 012ee435ba6baa6a523864e5df8f1bb508ce56d2..fd5d09dd37f02a8ff36274edc0f96bd999f48b91 100644 |
--- a/chrome/browser/ui/views/autofill/autofill_dialog_views.h |
+++ b/chrome/browser/ui/views/autofill/autofill_dialog_views.h |
@@ -34,6 +34,7 @@ class FocusManager; |
class ImageButton; |
class ImageView; |
class Label; |
+class Link; |
class MenuRunner; |
class TextButton; |
class Textfield; |
@@ -138,10 +139,10 @@ class AutofillDialogViews : public AutofillDialogView, |
DISALLOW_COPY_AND_ASSIGN(DecoratedTextfield); |
}; |
- // An area for notifications. Some types of notifications point at stuff. |
+ // An area for notifications. Some notifications point at the account chooser. |
class NotificationArea : public views::View { |
public: |
- NotificationArea(); |
+ explicit NotificationArea(views::View* arrow_centering_anchor); |
virtual ~NotificationArea(); |
void SetNotification(const DialogNotification& notification); |
@@ -152,6 +153,7 @@ class AutofillDialogViews : public AutofillDialogView, |
private: |
views::Label* label_; |
+ views::View* arrow_centering_anchor_; |
Evan Stade
2013/02/07 06:13:21
docs
Dan Beam
2013/02/07 18:22:36
Done.
|
DialogNotification notification_; |
DISALLOW_COPY_AND_ASSIGN(NotificationArea); |
@@ -330,8 +332,8 @@ class AutofillDialogViews : public AutofillDialogView, |
// Runs the suggestion menu (triggered by each section's |suggested_button|. |
scoped_ptr<views::MenuRunner> menu_runner_; |
- // The link that initiates the sign in flow. |
- views::Link* sign_in_link_; |
+ // A link to allow choosing different accounts to pay with. |
+ views::Link* account_chooser_link_; |
// View to host the signin dialog and related controls. |
views::View* sign_in_container_; |