| Index: net/spdy/hpack/hpack_entry.h
|
| diff --git a/net/spdy/hpack/hpack_entry.h b/net/spdy/hpack/hpack_entry.h
|
| index b0948102f9dc5fe07ad7004d79a0572ec59dcd13..de3f9fe95aa5872f5672aef08ebcb948f44637ce 100644
|
| --- a/net/spdy/hpack/hpack_entry.h
|
| +++ b/net/spdy/hpack/hpack_entry.h
|
| @@ -73,6 +73,9 @@ class NET_EXPORT_PRIVATE HpackEntry {
|
|
|
| std::string GetDebugString() const;
|
|
|
| + int64_t time_added() const { return time_added_; }
|
| + void set_time_added(int64_t now) { time_added_ = now; }
|
| +
|
| private:
|
| enum EntryType {
|
| LOOKUP,
|
| @@ -94,6 +97,9 @@ class NET_EXPORT_PRIVATE HpackEntry {
|
| size_t insertion_index_;
|
|
|
| EntryType type_;
|
| +
|
| + // For HpackHeaderTable::DebugVisitorInterface
|
| + int64_t time_added_;
|
| };
|
|
|
| } // namespace net
|
|
|