// Copyright 2016 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_BASE_MEDIA_TRACK_H_ #define MEDIA_BASE_MEDIA_TRACK_H_ #include <string> #include "base/types/strong_alias.h" #include "media/base/media_export.h" #include "media/base/stream_parser.h" namespace media { class MEDIA_EXPORT MediaTrack { … }; // Helper for logging. MEDIA_EXPORT const char* TrackTypeToStr(MediaTrack::Type type); } // namespace media #endif // MEDIA_BASE_MEDIA_TRACK_H_