diff options
author | rtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-22 21:02:05 +0000 |
---|---|---|
committer | rtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-22 21:02:05 +0000 |
commit | e8ff268484e630db4bfc88cbb794fef451c79e20 (patch) | |
tree | 8f0fc16fe1bfeb8794858de30195b5785af965ef /net/net.gyp | |
parent | 4104b88603f698e72bdaa9a933bf35dde1bec1bc (diff) | |
download | chromium_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/net.gyp')
-rw-r--r-- | net/net.gyp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/net.gyp b/net/net.gyp index 5bf6904..58b00fd 100644 --- a/net/net.gyp +++ b/net/net.gyp @@ -709,6 +709,7 @@ 'quic/quic_client_session.h', 'quic/quic_crypto_client_stream.cc', 'quic/quic_crypto_client_stream.h', + 'quic/quic_crypto_client_stream_factory.h', 'quic/quic_crypto_server_stream.cc', 'quic/quic_crypto_server_stream.h', 'quic/quic_crypto_stream.cc', @@ -1556,6 +1557,10 @@ 'quic/test_tools/crypto_test_utils.h', 'quic/test_tools/mock_clock.cc', 'quic/test_tools/mock_clock.h', + 'quic/test_tools/mock_crypto_client_stream.cc', + 'quic/test_tools/mock_crypto_client_stream.h', + 'quic/test_tools/mock_crypto_client_stream_factory.cc', + 'quic/test_tools/mock_crypto_client_stream_factory.h', 'quic/test_tools/mock_random.cc', 'quic/test_tools/mock_random.h', 'quic/test_tools/quic_connection_peer.cc', |