chromium/chrome/test/user_education/interactive_feature_promo_test_internal.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_TEST_USER_EDUCATION_INTERACTIVE_FEATURE_PROMO_TEST_INTERNAL_H_
#define CHROME_TEST_USER_EDUCATION_INTERACTIVE_FEATURE_PROMO_TEST_INTERNAL_H_

#include <map>
#include <memory>
#include "base/callback_list.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/scoped_multi_source_observation.h"
#include "base/scoped_observation.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_observer.h"
#include "chrome/test/interaction/interaction_test_util_browser.h"
#include "chrome/test/interaction/interactive_browser_test.h"
#include "chrome/test/interaction/interactive_browser_test_internal.h"
#include "chrome/test/user_education/interactive_feature_promo_test_common.h"
#include "components/feature_engagement/test/scoped_iph_feature_list.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/user_education/common/feature_promo_controller.h"
#include "components/user_education/test/feature_promo_session_test_util.h"
#include "content/public/browser/browser_context.h"

namespace internal {

class InteractiveFeaturePromoTestPrivate
    : public InteractiveBrowserTestPrivate,
      public InteractiveFeaturePromoTestCommon,
      public ProfileObserver {};

}  // namespace internal

#endif  // CHROME_TEST_USER_EDUCATION_INTERACTIVE_FEATURE_PROMO_TEST_INTERNAL_H_