// 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 MEDIA_FORMATS_HLS_PARSE_STATUS_H_ #define MEDIA_FORMATS_HLS_PARSE_STATUS_H_ #include <string_view> #include "media/base/media_export.h" #include "media/base/status.h" namespace media::hls { enum class ParseStatusCode : StatusCodeType { … }; struct ParseStatusTraits { … }; ParseStatus; MEDIA_EXPORT std::string_view ParseStatusCodeToString(ParseStatusCode code); } // namespace media::hls #endif // MEDIA_FORMATS_HLS_PARSE_STATUS_H_