// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_FEED_CORE_V2_PUBLIC_STREAM_TYPE_H_ #define COMPONENTS_FEED_CORE_V2_PUBLIC_STREAM_TYPE_H_ #include <string> #include "components/feed/core/v2/public/types.h" namespace feed { // Selects the stream type. // Note: currently there are two options, but this leaves room for more // parameters. class StreamType { … }; inline std::ostream& operator<<(std::ostream& os, const StreamType& stream_type) { … } } // namespace feed #endif // COMPONENTS_FEED_CORE_V2_PUBLIC_STREAM_TYPE_H_