chromium/components/user_education/common/feature_promo_result.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 "components/user_education/common/feature_promo_result.h"

namespace user_education {

FeaturePromoResult::FeaturePromoResult(const FeaturePromoResult& other) =
    default;

FeaturePromoResult& FeaturePromoResult::operator=(
    const FeaturePromoResult& other) = default;

FeaturePromoResult& FeaturePromoResult::operator=(Failure failure) {}

FeaturePromoResult::~FeaturePromoResult() = default;

// static
FeaturePromoResult FeaturePromoResult::Success() {}

std::ostream& operator<<(std::ostream& os,
                         FeaturePromoResult::Failure failure) {}

std::ostream& operator<<(std::ostream& os, const FeaturePromoResult& result) {}

}  // namespace user_education