chromium/net/base/test_data_stream.h

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

#ifndef NET_BASE_TEST_DATA_STREAM_H_
#define NET_BASE_TEST_DATA_STREAM_H_

// This is a class for generating an infinite stream of data which can be
// verified independently to be the correct stream of data.

#include "base/memory/raw_ptr.h"

namespace net {

class TestDataStream {};

}  // namespace net

#endif  // NET_BASE_TEST_DATA_STREAM_H_