// 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_FILTERS_MEMORY_DATA_SOURCE_H_ #define MEDIA_FILTERS_MEMORY_DATA_SOURCE_H_ #include <stddef.h> #include <stdint.h> #include <atomic> #include <string> #include "base/memory/raw_ptr.h" #include "media/base/data_source.h" namespace media { // Basic data source that treats the URL as a file path, and uses the file // system to read data for a media pipeline. class MEDIA_EXPORT MemoryDataSource final : public DataSource { … }; } // namespace media #endif // MEDIA_FILTERS_MEMORY_DATA_SOURCE_H_