chromium/chrome/browser/ui/user_education/start_tutorial_in_page.cc

// 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.

#include "chrome/browser/ui/user_education/start_tutorial_in_page.h"

#include "base/memory/weak_ptr.h"
#include "base/threading/thread_checker.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_navigator.h"
#include "chrome/browser/ui/browser_navigator_params.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/user_education/user_education_service.h"
#include "chrome/browser/user_education/user_education_service_factory.h"
#include "components/user_education/common/feature_promo_controller.h"
#include "ui/base/page_transition_types.h"
#include "ui/base/window_open_disposition.h"

namespace {

class StartTutorialInPageImpl : public StartTutorialInPage {};

}  // namespace

StartTutorialInPage::Params::Params() = default;
StartTutorialInPage::Params::Params(Params&& other) noexcept = default;
StartTutorialInPage::Params& StartTutorialInPage::Params::operator=(
    Params&& other) noexcept = default;
StartTutorialInPage::Params::~Params() = default;

StartTutorialInPage::StartTutorialInPage() = default;
StartTutorialInPage::~StartTutorialInPage() = default;

base::WeakPtr<StartTutorialInPage> StartTutorialInPage::Start(Browser* browser,
                                                              Params params) {}