chromium/chrome/browser/ui/autofill/update_address_bubble_controller.h

// Copyright 2024 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_UPDATE_ADDRESS_BUBBLE_CONTROLLER_H_
#define CHROME_BROWSER_UI_AUTOFILL_UPDATE_ADDRESS_BUBBLE_CONTROLLER_H_

#include <string>

#include "base/functional/callback_forward.h"
#include "components/autofill/core/browser/autofill_client.h"
#include "components/autofill/core/browser/data_model/autofill_profile.h"
#include "content/public/browser/web_contents_observer.h"

namespace autofill {

class AddressBubbleControllerDelegate;

// The controller used by `UpdateAddressProfileView` to get content for
// the interface and communicate back user input via the delegate. It is created
// outside the view but passed to it for ownership.
class UpdateAddressBubbleController : public content::WebContentsObserver {};

}  // namespace autofill

#endif  // CHROME_BROWSER_UI_AUTOFILL_UPDATE_ADDRESS_BUBBLE_CONTROLLER_H_