Index: net/spdy/hpack_encoder.h |
diff --git a/net/spdy/hpack_encoder.h b/net/spdy/hpack_encoder.h |
index 12e41c52375f36e2da4e459998c858a80560ec22..7d73b9292d3be0d3cb840b1e82a92e2385be1e50 100644 |
--- a/net/spdy/hpack_encoder.h |
+++ b/net/spdy/hpack_encoder.h |
@@ -66,8 +66,7 @@ class NET_EXPORT_PRIVATE HpackEncoder { |
typedef std::vector<Representation> Representations; |
// Emits a static/dynamic indexed representation (Section 7.1). |
- void EmitDynamicIndex(HpackEntry* entry); |
- void EmitStaticIndex(HpackEntry* entry); |
+ void EmitIndex(HpackEntry* entry); |
// Emits a literal representation (Section 7.2). |
void EmitIndexedLiteral(const Representation& representation); |
@@ -79,13 +78,6 @@ class NET_EXPORT_PRIVATE HpackEncoder { |
void UpdateCharacterCounts(base::StringPiece str); |
- // Determines the representation delta required to encode |header_set| in |
- // the current header table context. Entries in the reference set are |
- // enumerated and marked with membership in the current |header_set|. |
- // Representations which must be explicitly emitted are returned. |
- Representations DetermineEncodingDelta( |
- const std::map<std::string, std::string>& header_set); |
- |
// Crumbles a cookie header into sorted, de-duplicated crumbs. |
static void CookieToCrumbs(const Representation& cookie, |
Representations* crumbs_out); |