chromium/mojo/public/cpp/system/filtered_data_source.h

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MOJO_PUBLIC_CPP_SYSTEM_FILTERED_DATA_SOURCE_H_
#define MOJO_PUBLIC_CPP_SYSTEM_FILTERED_DATA_SOURCE_H_

#include <limits>
#include <memory>

#include "base/containers/span.h"
#include "mojo/public/cpp/system/data_pipe_producer.h"
#include "mojo/public/cpp/system/system_export.h"

namespace mojo {

// A class wraps any other DataPipeProducer::DataSource interface and provides
// the Filter interface to monitor read manipulations.
class MOJO_CPP_SYSTEM_EXPORT FilteredDataSource final
    : public DataPipeProducer::DataSource {};

}  // namespace mojo

#endif  // MOJO_PUBLIC_CPP_SYSTEM_FILTERED_DATA_SOURCE_H_