summaryrefslogtreecommitdiffstats
path: root/net/quic/quic_crypto_client_stream.h
diff options
context:
space:
mode:
authorrtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-22 21:02:05 +0000
committerrtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-22 21:02:05 +0000
commite8ff268484e630db4bfc88cbb794fef451c79e20 (patch)
tree8f0fc16fe1bfeb8794858de30195b5785af965ef /net/quic/quic_crypto_client_stream.h
parent4104b88603f698e72bdaa9a933bf35dde1bec1bc (diff)
downloadchromium_src-e8ff268484e630db4bfc88cbb794fef451c79e20.zip
chromium_src-e8ff268484e630db4bfc88cbb794fef451c79e20.tar.gz
chromium_src-e8ff268484e630db4bfc88cbb794fef451c79e20.tar.bz2
QUIC Crypto - Code to mock out the QuicCryptoClientStream.
Use the mock class during crypto handshake in quic_network_transaction, quic_http_stream and quic_stream_factory classes. Deleted sending of shlo and chlo messages from the unit tests of these classes. This code deletes the following methods from quic_test_utils.cc. We will share the cryto testing code with the server. CreateChloMessage ConstructClientHelloPacket CreateShloMessage ConstructServerHelloPacket R=rch TEST=net unittests Review URL: https://codereview.chromium.org/12729017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@189904 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/quic/quic_crypto_client_stream.h')
-rw-r--r--net/quic/quic_crypto_client_stream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/quic/quic_crypto_client_stream.h b/net/quic/quic_crypto_client_stream.h
index 33cf6c4..3b0c97d 100644
--- a/net/quic/quic_crypto_client_stream.h
+++ b/net/quic/quic_crypto_client_stream.h
@@ -30,7 +30,7 @@ class NET_EXPORT_PRIVATE QuicCryptoClientStream : public QuicCryptoStream {
// Performs a crypto handshake with the server. Returns true if the crypto
// handshake is started successfully.
- bool CryptoConnect();
+ virtual bool CryptoConnect();
private:
friend class test::CryptoTestUtils;