| Index: trunk/src/net/quic/test_tools/quic_test_utils.h
|
| ===================================================================
|
| --- trunk/src/net/quic/test_tools/quic_test_utils.h (revision 198763)
|
| +++ trunk/src/net/quic/test_tools/quic_test_utils.h (working copy)
|
| @@ -13,10 +13,8 @@
|
| #include "net/quic/quic_connection.h"
|
| #include "net/quic/quic_framer.h"
|
| #include "net/quic/quic_session.h"
|
| -#include "net/quic/quic_spdy_decompressor.h"
|
| #include "net/quic/test_tools/mock_clock.h"
|
| #include "net/quic/test_tools/mock_random.h"
|
| -#include "net/spdy/spdy_framer.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
|
|
| namespace net {
|
| @@ -37,8 +35,6 @@
|
| // a stream frame that has |payload| bytes.
|
| size_t GetPacketLengthForOneStream(bool include_version, size_t payload);
|
|
|
| -string SerializeUncompressedHeaders(const SpdyHeaderBlock& headers);
|
| -
|
| class MockFramerVisitor : public QuicFramerVisitorInterface {
|
| public:
|
| MockFramerVisitor();
|
| @@ -326,18 +322,8 @@
|
| QuicPacketSequenceNumber sequence_number) const OVERRIDE;
|
| };
|
|
|
| -class TestDecompressorVisitor : public QuicSpdyDecompressor::Visitor {
|
| - public:
|
| - virtual ~TestDecompressorVisitor() {}
|
| - virtual bool OnDecompressedData(base::StringPiece data) OVERRIDE;
|
| -
|
| - string data() { return data_; }
|
| -
|
| - private:
|
| - string data_;
|
| -};
|
| -
|
| } // namespace test
|
| +
|
| } // namespace net
|
|
|
| #endif // NET_QUIC_TEST_TOOLS_QUIC_TEST_UTILS_H_
|
|
|