chromium/chrome/browser/webapps/installable/ml_promotion_browsertest_base.h

// 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_WEBAPPS_INSTALLABLE_ML_PROMOTION_BROWSERTEST_BASE_H_
#define CHROME_BROWSER_WEBAPPS_INSTALLABLE_ML_PROMOTION_BROWSERTEST_BASE_H_

#include <optional>
#include <string>

#include "chrome/test/base/platform_browser_test.h"
#include "components/webapps/browser/webapps_client.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_mock_cert_verifier.h"
#include "net/test/embedded_test_server/embedded_test_server.h"

#if !BUILDFLAG(IS_ANDROID)
#include "chrome/browser/web_applications/os_integration/os_integration_manager.h"
#endif

namespace content {
class WebContents;
}  // namespace content

namespace segmentation_platform {
class MockSegmentationPlatformService;
}  // namespace segmentation_platform

namespace webapps {

// TODO(b/287255120) : Also add this as a dependency on Android for building
// test code.
class MLPromotionBrowserTestBase : public PlatformBrowserTest {};

}  // namespace webapps

#endif  // CHROME_BROWSER_WEBAPPS_INSTALLABLE_ML_PROMOTION_BROWSERTEST_BASE_H_