// 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_WEBM_WEBM_AUDIO_CLIENT_H_ #define MEDIA_FORMATS_WEBM_WEBM_AUDIO_CLIENT_H_ #include <stdint.h> #include <string> #include <vector> #include "base/memory/raw_ptr.h" #include "media/base/encryption_scheme.h" #include "media/base/media_log.h" #include "media/formats/webm/webm_parser.h" namespace media { class AudioDecoderConfig; // Helper class used to parse an Audio element inside a TrackEntry element. class WebMAudioClient : public WebMParserClient { … }; } // namespace media #endif // MEDIA_FORMATS_WEBM_WEBM_AUDIO_CLIENT_H_