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

Unified Diff: net/spdy/spdy_bitmasks.h

Issue 2832973003: Split net/spdy into core and chromium subdirectories. (Closed)
Patch Set: Fix some more build rules. Created 3 years, 8 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/spdy/spdy_alt_svc_wire_format_test.cc ('k') | net/spdy/spdy_buffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_bitmasks.h
diff --git a/net/spdy/spdy_bitmasks.h b/net/spdy/spdy_bitmasks.h
deleted file mode 100644
index 71ad1e6a93f6cff438ef60b84fa82a7b19cc2cd4..0000000000000000000000000000000000000000
--- a/net/spdy/spdy_bitmasks.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// 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.
-
-#ifndef NET_SPDY_SPDY_BITMASKS_H_
-#define NET_SPDY_SPDY_BITMASKS_H_
-
-namespace net {
-
-// StreamId mask from the SpdyHeader
-const unsigned int kStreamIdMask = 0x7fffffff;
-
-// Control flag mask from the SpdyHeader
-const unsigned int kControlFlagMask = 0x8000;
-
-// Mask the lower 24 bits.
-const unsigned int kLengthMask = 0xffffff;
-
-// Legal flags on data packets.
-const int kDataFlagsMask = 0x01;
-
-// Legal flags on control packets.
-const int kControlFlagsMask = 0x03;
-
-} // namespace net
-
-#endif // NET_SPDY_SPDY_BITMASKS_H_
« no previous file with comments | « net/spdy/spdy_alt_svc_wire_format_test.cc ('k') | net/spdy/spdy_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698