Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Unified Diff: net/quic/quic_crypto_client_stream_factory.h

Issue 2193073003: Move shared files in net/quic/ into net/quic/core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: io_thread_unittest.cc Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/quic_crypto_client_stream.cc ('k') | net/quic/quic_crypto_client_stream_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 c6cc93e7f6ad2ae198ee467f6e1827b3a4f562ed..0000000000000000000000000000000000000000
--- a/net/quic/quic_crypto_client_stream_factory.h
+++ /dev/null
@@ -1,38 +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 <memory>
-#include <string>
-
-#include "net/base/net_export.h"
-#include "net/quic/quic_server_id.h"
-
-namespace net {
-
-class ProofVerifyContext;
-class QuicChromiumClientSession;
-class QuicCryptoClientConfig;
-class QuicCryptoClientStream;
-
-// 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,
- QuicChromiumClientSession* session,
- std::unique_ptr<ProofVerifyContext> proof_verify_context,
- QuicCryptoClientConfig* crypto_config) = 0;
-
- static QuicCryptoClientStreamFactory* GetDefaultFactory();
-};
-
-} // namespace net
-
-#endif // NET_QUIC_QUIC_CRYPTO_CLIENT_STREAM_FACTORY_H_
« no previous file with comments | « net/quic/quic_crypto_client_stream.cc ('k') | net/quic/quic_crypto_client_stream_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698