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

Unified Diff: net/tools/flip_server/spdy_interface.h

Issue 10763011: Remove several usages of linked_ptr in spdy land. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 | « net/spdy/spdy_stream.cc ('k') | net/tools/flip_server/spdy_interface.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/flip_server/spdy_interface.h
diff --git a/net/tools/flip_server/spdy_interface.h b/net/tools/flip_server/spdy_interface.h
index 2bad6ba6d01d3a8450626c83fe8be643638d2681..262e14a82ed9bfec0939d7401ee105a6b74d9081 100644
--- a/net/tools/flip_server/spdy_interface.h
+++ b/net/tools/flip_server/spdy_interface.h
@@ -52,7 +52,7 @@ class SpdySM : public BufferedSpdyFramerVisitorInterface,
std::string server_port);
int SpdyHandleNewStream(SpdyStreamId stream_id,
SpdyPriority priority,
- const linked_ptr<SpdyHeaderBlock>& headers,
+ const SpdyHeaderBlock& headers,
std::string& http_data,
bool* is_https_scheme);
@@ -67,17 +67,17 @@ class SpdySM : public BufferedSpdyFramerVisitorInterface,
uint8 credential_slot,
bool fin,
bool unidirectional,
- const linked_ptr<SpdyHeaderBlock>& headers) OVERRIDE;
+ const SpdyHeaderBlock& headers) OVERRIDE;
// Called after all the header data for SYN_REPLY control frame is received.
virtual void OnSynReply(SpdyStreamId stream_id,
bool fin,
- const linked_ptr<SpdyHeaderBlock>& headers) OVERRIDE;
+ const SpdyHeaderBlock& headers) OVERRIDE;
// Called after all the header data for HEADERS control frame is received.
virtual void OnHeaders(SpdyStreamId stream_id,
bool fin,
- const linked_ptr<SpdyHeaderBlock>& headers) OVERRIDE;
+ const SpdyHeaderBlock& headers) OVERRIDE;
// Called when data is received.
// |stream_id| The stream receiving data.
« no previous file with comments | « net/spdy/spdy_stream.cc ('k') | net/tools/flip_server/spdy_interface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698