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

Unified Diff: net/http/http_server_properties.cc

Issue 9618002: SPDY - integration of spdy/3 code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 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
Index: net/http/http_server_properties.cc
===================================================================
--- net/http/http_server_properties.cc (revision 125802)
+++ net/http/http_server_properties.cc (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -14,6 +14,7 @@
"npn-spdy/1",
"npn-spdy/2",
"npn-spdy/2.1",
+ "npn-spdy/3",
};
static const char* AlternateProtocolToString(AlternateProtocol protocol) {
@@ -21,6 +22,7 @@
case NPN_SPDY_1:
case NPN_SPDY_2:
case NPN_SPDY_21:
+ case NPN_SPDY_3:
return kAlternateProtocolStrings[protocol];
case ALTERNATE_PROTOCOL_BROKEN:
return "Broken";

Powered by Google App Engine
This is Rietveld 408576698