summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-09 23:41:16 +0000
committermbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-09 23:41:16 +0000
commit7719ee4ad47c89053320db220eeb55a80d16d730 (patch)
treefef3b3a2693774868e9064673390b83f1f6d2790
parent3faae0c0329ca109f719a84676386382f3e1ff0a (diff)
downloadchromium_src-7719ee4ad47c89053320db220eeb55a80d16d730.zip
chromium_src-7719ee4ad47c89053320db220eeb55a80d16d730.tar.gz
chromium_src-7719ee4ad47c89053320db220eeb55a80d16d730.tar.bz2
Fix some over-80-char lines.
BUG=none TEST=none Review URL: http://codereview.chromium.org/381008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31506 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--net/flip/flip_bitmasks.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/net/flip/flip_bitmasks.h b/net/flip/flip_bitmasks.h
index 35e7126..f5ed3c2 100644
--- a/net/flip/flip_bitmasks.h
+++ b/net/flip/flip_bitmasks.h
@@ -7,10 +7,17 @@
namespace flip {
-const unsigned int kStreamIdMask = 0x7fffffff; // StreamId mask from the FlipHeader
-const unsigned int kControlFlagMask = 0x8000; // Control flag mask from the FlipHeader
-const unsigned int kPriorityMask = 0xc0; // Priority mask from the SYN_FRAME
-const unsigned int kLengthMask = 0xffffff; // Mask the lower 24 bits.
+// StreamId mask from the FlipHeader
+const unsigned int kStreamIdMask = 0x7fffffff;
+
+// Control flag mask from the FlipHeader
+const unsigned int kControlFlagMask = 0x8000;
+
+// Priority mask from the SYN_FRAME
+const unsigned int kPriorityMask = 0xc0;
+
+// Mask the lower 24 bits.
+const unsigned int kLengthMask = 0xffffff;
} // flip