// Copyright 2014 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_COMMON_STREAM_PARSER_TEST_BASE_H_ #define MEDIA_FORMATS_COMMON_STREAM_PARSER_TEST_BASE_H_ #include <stddef.h> #include <stdint.h> #include <memory> #include "media/base/audio_decoder_config.h" #include "media/base/media_util.h" #include "media/base/stream_parser.h" #include "media/base/stream_parser_buffer.h" #include "media/base/video_decoder_config.h" namespace media { // Test helper for verifying StreamParser behavior. class StreamParserTestBase { … }; } // namespace media #endif // MEDIA_FORMATS_COMMON_STREAM_PARSER_TEST_BASE_H_