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

Unified Diff: net/spdy/spdy_read_queue.h

Issue 2386883002: Remove stl_util's deletion functions from net/spdy/. (Closed)
Patch Set: nits Created 4 years, 2 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
« no previous file with comments | « no previous file | net/spdy/spdy_read_queue.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_read_queue.h
diff --git a/net/spdy/spdy_read_queue.h b/net/spdy/spdy_read_queue.h
index bf85afbb12c0177f44e904d20d6c12a2ddd8a016..af2ff87dcdd834ba435b1374fed667130a367c44 100644
--- a/net/spdy/spdy_read_queue.h
+++ b/net/spdy/spdy_read_queue.h
@@ -40,7 +40,7 @@ class NET_EXPORT_PRIVATE SpdyReadQueue {
void Clear();
private:
- std::deque<SpdyBuffer*> queue_;
+ std::deque<std::unique_ptr<SpdyBuffer>> queue_;
size_t total_size_;
DISALLOW_COPY_AND_ASSIGN(SpdyReadQueue);
« no previous file with comments | « no previous file | net/spdy/spdy_read_queue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698