#ifndef COMPONENTS_FEED_CORE_V2_WEB_FEED_SUBSCRIPTIONS_WEB_FEED_TYPES_H_
#define COMPONENTS_FEED_CORE_V2_WEB_FEED_SUBSCRIPTIONS_WEB_FEED_TYPES_H_
#include <iosfwd>
#include <optional>
#include "components/feed/core/proto/v2/store.pb.h"
#include "components/feed/core/proto/v2/wire/web_feeds.pb.h"
#include "components/feed/core/v2/operation_token.h"
#include "components/feed/core/v2/public/types.h"
namespace feed {
struct WebFeedSubscriptionInfo { … };
enum class WebFeedInFlightChangeStrategy { … };
std::ostream& operator<<(std::ostream& os,
const WebFeedInFlightChangeStrategy& strategy);
struct WebFeedInFlightChange { … };
std::ostream& operator<<(std::ostream& os, const WebFeedInFlightChange& change);
}
#endif