blob: 9a6b08cac8d1446f44b238a48885bd0c57b40db4 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_VIEWS_AUTOFILL_SAVE_CARD_MANAGE_CARDS_BUBBLE_VIEWS_H_
#define CHROME_BROWSER_UI_VIEWS_AUTOFILL_SAVE_CARD_MANAGE_CARDS_BUBBLE_VIEWS_H_
#include "chrome/browser/ui/views/autofill/save_card_bubble_views.h"
#include "ui/views/controls/button/button.h"
namespace autofill {
// This class displays the Manage cards bubble that is shown after the user
// submits a form with a credit card number that Autofill has not
// previously saved and chooses to save it. This bubble is accessible by
// clicking on the omnibox credit card icon. It contains a description of the
// credit card that was just saved, a [Manage cards] button that links to the
// Autofill settings page, and a [Done] button that closes the bubble.
class SaveCardManageCardsBubbleViews : public SaveCardBubbleViews,
public views::ButtonListener {
public:
// Bubble will be anchored to |anchor_view|.
SaveCardManageCardsBubbleViews(views::View* anchor_view,
const gfx::Point& anchor_point,
content::WebContents* web_contents,
SaveCardBubbleController* controller);
// views::WidgetDelegate:
views::View* CreateFootnoteView() override;
views::View* CreateExtraView() override;
int GetDialogButtons() const override;
base::string16 GetDialogButtonLabel(ui::DialogButton button) const override;
private:
std::unique_ptr<views::View> CreateMainContentView() override;
// views::ButtonListener:
// The button listener method for the extra view that contains
// the Manage cards button.
void ButtonPressed(views::Button* sender, const ui::Event& event) override;
~SaveCardManageCardsBubbleViews() override;
DISALLOW_COPY_AND_ASSIGN(SaveCardManageCardsBubbleViews);
};
} // namespace autofill
#endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_SAVE_CARD_MANAGE_CARDS_BUBBLE_VIEWS_H_