blob: f5c4a57b56a988ae4b48b2d46246eabd3dde8478 [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// 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_UPDATE_ADDRESS_PROFILE_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_AUTOFILL_UPDATE_ADDRESS_PROFILE_VIEW_H_
#include <memory>
#include "base/memory/raw_ptr.h"
#include "chrome/browser/ui/autofill/autofill_bubble_base.h"
#include "chrome/browser/ui/autofill/update_address_bubble_controller.h"
#include "chrome/browser/ui/views/autofill/address_bubble_base_view.h"
#include "chrome/browser/ui/views/location_bar/location_bar_bubble_delegate_view.h"
#include "ui/base/metadata/metadata_header_macros.h"
namespace content {
class WebContents;
}
namespace views {
class View;
}
namespace autofill {
// Shown after a user submits a form with an address profile that's slightly
// different from an address profile previously saved.
class UpdateAddressProfileView : public AddressBubbleBaseView {
METADATA_HEADER(UpdateAddressProfileView, AddressBubbleBaseView)
public:
DECLARE_CLASS_ELEMENT_IDENTIFIER_VALUE(kTopViewId);
DECLARE_CLASS_ELEMENT_IDENTIFIER_VALUE(kEditButtonViewId);
UpdateAddressProfileView(
views::View* anchor_view,
std::unique_ptr<UpdateAddressBubbleController> controller,
content::WebContents* web_contents);
UpdateAddressProfileView(const UpdateAddressProfileView&) = delete;
UpdateAddressProfileView& operator=(const UpdateAddressProfileView&) = delete;
~UpdateAddressProfileView() override;
// views::WidgetDelegate:
bool ShouldShowCloseButton() const override;
std::u16string GetWindowTitle() const override;
void WindowClosing() override;
void Show(DisplayReason reason);
// AutofillBubbleBase:
void Hide() override;
private:
std::unique_ptr<UpdateAddressBubbleController> controller_;
// Indicates whether the profile has empty original values meaning the prompt
// is shown to add info to the profile.
bool has_empty_original_values_ = false;
};
} // namespace autofill
#endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_UPDATE_ADDRESS_PROFILE_VIEW_H_