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

Unified Diff: net/websockets/websocket_job_spdy3_unittest.cc

Issue 10843050: WebSocket over SPDY: handshake support for both of SPDY/2 and SPDY/3 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase for landing Created 8 years, 4 months 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/websockets/websocket_job.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/websockets/websocket_job_spdy3_unittest.cc
diff --git a/net/websockets/websocket_job_spdy3_unittest.cc b/net/websockets/websocket_job_spdy3_unittest.cc
index a05c0942ff97516a7ef3e9fb69ead850faa60f47..b758252059bcf13988fe3a6985fdbb6e9606321a 100644
--- a/net/websockets/websocket_job_spdy3_unittest.cc
+++ b/net/websockets/websocket_job_spdy3_unittest.cc
@@ -544,17 +544,17 @@ const char WebSocketJobSpdy3Test::kDataHello[] = "Hello, ";
const char WebSocketJobSpdy3Test::kDataWorld[] = "World!\n";
const char* const WebSocketJobSpdy3Test::kHandshakeRequestForSpdy[] = {
- "path", "/demo",
- "version", "WebSocket/13",
- "scheme", "ws",
- "host", "example.com",
- "origin", "http://example.com",
- "sec-websocket-protocol", "sample"
+ ":path", "/demo",
+ ":version", "WebSocket/13",
+ ":scheme", "ws",
+ ":host", "example.com",
+ ":origin", "http://example.com",
+ ":sec-websocket-protocol", "sample"
};
const char* const WebSocketJobSpdy3Test::kHandshakeResponseForSpdy[] = {
- "status", "101 Switching Protocols",
- "sec-websocket-protocol", "sample"
+ ":status", "101 Switching Protocols",
+ ":sec-websocket-protocol", "sample"
};
const size_t WebSocketJobSpdy3Test::kHandshakeRequestWithoutCookieLength =
« no previous file with comments | « net/websockets/websocket_job.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698