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

Unified Diff: net/websockets/websocket_handshake_constants.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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
« no previous file with comments | « net/websockets/websocket_handshake_constants.h ('k') | net/websockets/websocket_handshake_request_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/websockets/websocket_handshake_constants.cc
diff --git a/net/websockets/websocket_handshake_constants.cc b/net/websockets/websocket_handshake_constants.cc
deleted file mode 100644
index bb031e2101be1f2c00b045ce515c110085afbf4b..0000000000000000000000000000000000000000
--- a/net/websockets/websocket_handshake_constants.cc
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright 2013 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.
-
-#include "net/websockets/websocket_handshake_constants.h"
-
-namespace net {
-namespace websockets {
-
-const char kHttpProtocolVersion[] = "HTTP/1.1";
-
-const size_t kRawChallengeLength = 16;
-
-const char kSecWebSocketProtocol[] = "Sec-WebSocket-Protocol";
-const char kSecWebSocketExtensions[] = "Sec-WebSocket-Extensions";
-const char kSecWebSocketKey[] = "Sec-WebSocket-Key";
-const char kSecWebSocketAccept[] = "Sec-WebSocket-Accept";
-const char kSecWebSocketVersion[] = "Sec-WebSocket-Version";
-
-const char kSupportedVersion[] = "13";
-
-const char kUpgrade[] = "Upgrade";
-const char kWebSocketGuid[] = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
-
-const char kSecWebSocketProtocolSpdy3[] = ":sec-websocket-protocol";
-const char kSecWebSocketExtensionsSpdy3[] = ":sec-websocket-extensions";
-
-const char* const kSecWebSocketProtocolLowercase =
- kSecWebSocketProtocolSpdy3 + 1;
-const char* const kSecWebSocketExtensionsLowercase =
- kSecWebSocketExtensionsSpdy3 + 1;
-const char kSecWebSocketKeyLowercase[] = "sec-websocket-key";
-const char kSecWebSocketVersionLowercase[] = "sec-websocket-version";
-const char kUpgradeLowercase[] = "upgrade";
-const char kWebSocketLowercase[] = "websocket";
-
-} // namespace websockets
-} // namespace net
« no previous file with comments | « net/websockets/websocket_handshake_constants.h ('k') | net/websockets/websocket_handshake_request_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698