| Index: net/quic/quic_crypto_client_stream_factory.h
|
| diff --git a/net/quic/quic_crypto_client_stream_factory.h b/net/quic/quic_crypto_client_stream_factory.h
|
| deleted file mode 100644
|
| index 293fa8217b3c15af80f4c4d6d05824dd5ddce963..0000000000000000000000000000000000000000
|
| --- a/net/quic/quic_crypto_client_stream_factory.h
|
| +++ /dev/null
|
| @@ -1,32 +0,0 @@
|
| -// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef NET_QUIC_QUIC_CRYPTO_CLIENT_STREAM_FACTORY_H_
|
| -#define NET_QUIC_QUIC_CRYPTO_CLIENT_STREAM_FACTORY_H_
|
| -
|
| -#include <string>
|
| -
|
| -#include "net/base/net_export.h"
|
| -
|
| -namespace net {
|
| -
|
| -class QuicClientSession;
|
| -class QuicCryptoClientStream;
|
| -class QuicServerId;
|
| -
|
| -// An interface used to instantiate QuicCryptoClientStream objects. Used to
|
| -// facilitate testing code with mock implementations.
|
| -class NET_EXPORT QuicCryptoClientStreamFactory {
|
| - public:
|
| - virtual ~QuicCryptoClientStreamFactory() {}
|
| -
|
| - virtual QuicCryptoClientStream* CreateQuicCryptoClientStream(
|
| - const QuicServerId& server_id,
|
| - QuicClientSession* session,
|
| - QuicCryptoClientConfig* crypto_config) = 0;
|
| -};
|
| -
|
| -} // namespace net
|
| -
|
| -#endif // NET_QUIC_QUIC_CRYPTO_CLIENT_STREAM_FACTORY_H_
|
|
|