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

Unified Diff: net/quic/core/quic_crypto_client_stream_factory.cc

Issue 2565563002: Move various Chromium QUIC files to net/quic/chromium where they belong (Closed)
Patch Set: Created 4 years 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/core/quic_crypto_client_stream_factory.h ('k') | net/quic/core/quic_http_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_crypto_client_stream_factory.cc
diff --git a/net/quic/core/quic_crypto_client_stream_factory.cc b/net/quic/core/quic_crypto_client_stream_factory.cc
deleted file mode 100644
index af6e00340d58614cb3bd4dd2ba362664e43ac36d..0000000000000000000000000000000000000000
--- a/net/quic/core/quic_crypto_client_stream_factory.cc
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright (c) 2016 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.
-
-#include "net/quic/core/quic_crypto_client_stream_factory.h"
-
-#include "base/lazy_instance.h"
-#include "net/quic/chromium/crypto/proof_verifier_chromium.h"
-#include "net/quic/chromium/quic_chromium_client_session.h"
-#include "net/quic/core/quic_crypto_client_stream.h"
-
-namespace net {
-
-namespace {
-
-class DefaultCryptoStreamFactory : public QuicCryptoClientStreamFactory {
- public:
- QuicCryptoClientStream* CreateQuicCryptoClientStream(
- const QuicServerId& server_id,
- QuicChromiumClientSession* session,
- std::unique_ptr<ProofVerifyContext> proof_verify_context,
- QuicCryptoClientConfig* crypto_config) override {
- return new QuicCryptoClientStream(server_id, session,
- proof_verify_context.release(),
- crypto_config, session);
- }
-};
-
-static base::LazyInstance<DefaultCryptoStreamFactory>::Leaky
- g_default_crypto_stream_factory = LAZY_INSTANCE_INITIALIZER;
-
-} // namespace
-
-// static
-QuicCryptoClientStreamFactory*
-QuicCryptoClientStreamFactory::GetDefaultFactory() {
- return g_default_crypto_stream_factory.Pointer();
-}
-
-} // namespace net
« no previous file with comments | « net/quic/core/quic_crypto_client_stream_factory.h ('k') | net/quic/core/quic_http_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698