#ifndef CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_
#define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_
#include <memory>
#include <string>
#include <vector>
#include "base/feature_list.h"
#include "base/functional/callback_helpers.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/download/test_download_shelf.h"
#include "chrome/browser/ui/autofill/test/test_autofill_bubble_handler.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_dialogs.h"
#include "chrome/browser/ui/browser_list_observer.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/location_bar/location_bar.h"
#include "chrome/browser/ui/translate/partial_translate_bubble_model.h"
#include "chrome/common/buildflags.h"
#include "components/user_education/common/feature_promo_controller.h"
#include "components/user_education/common/new_badge_controller.h"
#include "ui/base/interaction/element_identifier.h"
#if !BUILDFLAG(IS_ANDROID)
#include "chrome/browser/apps/link_capturing/intent_picker_info.h"
#endif
class LocationBarTesting;
class OmniboxView;
namespace qrcode_generator {
class QRCodeGeneratorBubbleView;
}
namespace send_tab_to_self {
class SendTabToSelfBubbleView;
}
namespace sharing_hub {
class SharingHubBubbleView;
}
namespace user_education {
class FeaturePromoController;
}
class TestBrowserWindow : public BrowserWindow { … };
class TestBrowserWindowOwner : public BrowserListObserver { … };
std::unique_ptr<Browser> CreateBrowserWithTestWindowForParams(
Browser::CreateParams params);
#endif