#include "chrome/browser/ui/autofill/delete_address_profile_dialog_controller_impl.h"
#include <memory>
#include "base/callback_list.h"
#include "chrome/browser/signin/identity_test_environment_profile_adaptor.h"
#include "chrome/browser/sync/sync_service_factory.h"
#include "chrome/test/interaction/interactive_browser_test.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
#include "components/sync/test/test_sync_service.h"
#include "content/public/test/browser_test.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "ui/views/window/dialog_client_view.h"
namespace autofill {
namespace {
constexpr char kSuppressedScreenshotError[] = …;
constexpr char kTestEmail[] = …;
}
class DeleteAddressProfileDialogControllerImplTest
: public InteractiveBrowserTest { … };
IN_PROC_BROWSER_TEST_F(DeleteAddressProfileDialogControllerImplTest,
InvokeUi_LocalProfile) { … }
IN_PROC_BROWSER_TEST_F(DeleteAddressProfileDialogControllerImplTest,
InvokeUi_SyncAddressProfile) { … }
IN_PROC_BROWSER_TEST_F(DeleteAddressProfileDialogControllerImplTest,
InvokeUi_AccountAddressProfile) { … }
IN_PROC_BROWSER_TEST_F(DeleteAddressProfileDialogControllerImplTest,
DialogAccepted) { … }
IN_PROC_BROWSER_TEST_F(DeleteAddressProfileDialogControllerImplTest,
DialogDeclined) { … }
}