| Index: net/spdy/spdy_test_util_spdy2.cc
|
| diff --git a/net/spdy/spdy_test_util_spdy2.cc b/net/spdy/spdy_test_util_spdy2.cc
|
| index 3c23249a757cd0bb6be246ec2cef166515fb09b5..eb49001ded6ff34fb95b6f820f92699651dd6deb 100644
|
| --- a/net/spdy/spdy_test_util_spdy2.cc
|
| +++ b/net/spdy/spdy_test_util_spdy2.cc
|
| @@ -67,27 +67,6 @@ SpdyFrame* ConstructSpdyControlFrame(const char* const extra_headers[],
|
|
|
| } // namespace
|
|
|
| -SpdyFrame* ConstructSpdyConnect(const char* const extra_headers[],
|
| - int extra_header_count,
|
| - int stream_id) {
|
| - const char* const kConnectHeaders[] = {
|
| - "method", "CONNECT",
|
| - "url", "www.google.com:443",
|
| - "host", "www.google.com",
|
| - "version", "HTTP/1.1",
|
| - };
|
| - return ConstructSpdyControlFrame(extra_headers,
|
| - extra_header_count,
|
| - /*compressed*/ false,
|
| - stream_id,
|
| - LOWEST,
|
| - SYN_STREAM,
|
| - CONTROL_FLAG_NONE,
|
| - kConnectHeaders,
|
| - arraysize(kConnectHeaders),
|
| - 0);
|
| -}
|
| -
|
| SpdyFrame* ConstructSpdyPush(const char* const extra_headers[],
|
| int extra_header_count,
|
| int stream_id,
|
|
|