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

Unified Diff: net/quic/test_tools/mock_crypto_client_stream_factory.h

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_http_utils_test.cc ('k') | net/quic/test_tools/mock_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/test_tools/mock_crypto_client_stream_factory.h
diff --git a/net/quic/test_tools/mock_crypto_client_stream_factory.h b/net/quic/test_tools/mock_crypto_client_stream_factory.h
deleted file mode 100644
index 6f645dac6edd3334afbe4f306832aec6765f148b..0000000000000000000000000000000000000000
--- a/net/quic/test_tools/mock_crypto_client_stream_factory.h
+++ /dev/null
@@ -1,59 +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_TEST_TOOLS_MOCK_CRYPTO_CLIENT_STREAM_FACTORY_H_
-#define NET_QUIC_TEST_TOOLS_MOCK_CRYPTO_CLIENT_STREAM_FACTORY_H_
-
-#include <queue>
-#include <string>
-
-#include "base/macros.h"
-#include "net/quic/chromium/crypto/proof_verifier_chromium.h"
-#include "net/quic/core/quic_crypto_client_stream_factory.h"
-#include "net/quic/core/quic_server_id.h"
-#include "net/quic/test_tools/mock_crypto_client_stream.h"
-
-namespace net {
-
-class QuicCryptoClientStream;
-
-class MockCryptoClientStreamFactory : public QuicCryptoClientStreamFactory {
- public:
- MockCryptoClientStreamFactory();
- ~MockCryptoClientStreamFactory() override;
-
- QuicCryptoClientStream* CreateQuicCryptoClientStream(
- const QuicServerId& server_id,
- QuicChromiumClientSession* session,
- std::unique_ptr<ProofVerifyContext> proof_verify_context,
- QuicCryptoClientConfig* crypto_config) override;
-
- void set_handshake_mode(
- MockCryptoClientStream::HandshakeMode handshake_mode) {
- handshake_mode_ = handshake_mode;
- }
-
- // The caller keeps ownership of |proof_verify_details|.
- void AddProofVerifyDetails(
- const ProofVerifyDetailsChromium* proof_verify_details) {
- proof_verify_details_queue_.push(proof_verify_details);
- }
-
- MockCryptoClientStream* last_stream() const { return last_stream_; }
-
- // Sets initial config for new sessions.
- void SetConfig(const QuicConfig& config);
-
- private:
- MockCryptoClientStream::HandshakeMode handshake_mode_;
- MockCryptoClientStream* last_stream_;
- std::queue<const ProofVerifyDetailsChromium*> proof_verify_details_queue_;
- std::unique_ptr<QuicConfig> config_;
-
- DISALLOW_COPY_AND_ASSIGN(MockCryptoClientStreamFactory);
-};
-
-} // namespace net
-
-#endif // NET_QUIC_TEST_TOOLS_MOCK_CRYPTO_CLIENT_STREAM_FACTORY_H_
« no previous file with comments | « net/quic/core/quic_http_utils_test.cc ('k') | net/quic/test_tools/mock_crypto_client_stream_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698