chromium/components/feed/core/v2/web_feed_subscriptions/web_feed_types.cc

// Copyright 2022 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/feed/core/v2/web_feed_subscriptions/web_feed_types.h"

#include <ostream>

namespace feed {

WebFeedInFlightChange::WebFeedInFlightChange() = default;
WebFeedInFlightChange::WebFeedInFlightChange(const WebFeedInFlightChange&) =
    default;
WebFeedInFlightChange::WebFeedInFlightChange(WebFeedInFlightChange&&) = default;
WebFeedInFlightChange& WebFeedInFlightChange::operator=(
    WebFeedInFlightChange&&) = default;
WebFeedInFlightChange& WebFeedInFlightChange::operator=(
    const WebFeedInFlightChange&) = default;
WebFeedInFlightChange::~WebFeedInFlightChange() = default;

std::ostream& operator<<(std::ostream& os,
                         const WebFeedInFlightChange& change) {}

std::ostream& operator<<(std::ostream& os,
                         const WebFeedInFlightChangeStrategy& strategy) {}
}  // namespace feed