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

Unified Diff: net/spdy/hpack_string_util.h

Issue 138243003: Implement basic classes for HPACK (HTTP/2 compression) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: And removing tabs from net.gyp... Created 6 years, 11 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/spdy/hpack_string_util.h
diff --git a/net/spdy/hpack_string_util.h b/net/spdy/hpack_string_util.h
new file mode 100644
index 0000000000000000000000000000000000000000..405c0298877d011766c6f4bf2fccd93d81312c6a
--- /dev/null
+++ b/net/spdy/hpack_string_util.h
@@ -0,0 +1,19 @@
+#ifndef NET_SPDY_HPACK_STRING_UTIL_H_
+#define NET_SPDY_HPACK_STRING_UTIL_H_
+
+#include "base/strings/string_piece.h"
+
+namespace net {
+
+// All section references below are to
+// http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-04
+// .
+
+// A constant-time StringPiece comparison function, as suggested
+// by section 6.
+bool StringPiecesEqualConstantTime(base::StringPiece str1,
+ base::StringPiece str2);
+
+} // namespace net
+
+#endif // NET_SPDY_HPACK_STRING_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698