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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #ifndef NET_SPDY_HPACK_STRING_UTIL_H_
2 #define NET_SPDY_HPACK_STRING_UTIL_H_
3
4 #include "base/strings/string_piece.h"
5
6 namespace net {
7
8 // All section references below are to
9 // http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-04
10 // .
11
12 // A constant-time StringPiece comparison function, as suggested
13 // by section 6.
14 bool StringPiecesEqualConstantTime(base::StringPiece str1,
15 base::StringPiece str2);
16
17 } // namespace net
18
19 #endif // NET_SPDY_HPACK_STRING_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698