blob: d9ee892b8872a1624fce00b40fe6eed36d5773db [file] [log] [blame]
// Copyright 2023 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_AUTOFILL_EDIT_ADDRESS_PROFILE_VIEW_H_
#define CHROME_BROWSER_UI_AUTOFILL_EDIT_ADDRESS_PROFILE_VIEW_H_
#include <memory>
#include "chrome/browser/ui/autofill/edit_address_profile_dialog_controller.h"
namespace content {
class WebContents;
} // namespace content
namespace autofill {
class AutofillBubbleBase;
// Shows a modal dialog for editing an Autofill profile.
std::unique_ptr<AutofillBubbleBase> ShowEditAddressProfileDialogView(
content::WebContents* web_contents,
EditAddressProfileDialogController* controller);
} // namespace autofill
#endif // CHROME_BROWSER_UI_AUTOFILL_EDIT_ADDRESS_PROFILE_VIEW_H_