| Index: net/spdy/spdy_framer.h
|
| diff --git a/net/spdy/spdy_framer.h b/net/spdy/spdy_framer.h
|
| index 73c0d89fba568e44b2f4164b3302a35b7887386c..73ecc01c1d2bf2eb701142a1761daf03f57c31a4 100644
|
| --- a/net/spdy/spdy_framer.h
|
| +++ b/net/spdy/spdy_framer.h
|
| @@ -117,7 +117,7 @@ class NET_EXPORT_PRIVATE SpdyFramerVisitorInterface {
|
|
|
| // Called when a RST_STREAM frame has been parsed.
|
| virtual void OnRstStream(SpdyStreamId stream_id,
|
| - SpdyRstStreamStatus status) = 0;
|
| + SpdyErrorCode error_code) = 0;
|
|
|
| // Called when a SETTINGS frame is received.
|
| // |clear_persisted| True if the respective flag is set on the SETTINGS frame.
|
| @@ -138,7 +138,7 @@ class NET_EXPORT_PRIVATE SpdyFramerVisitorInterface {
|
|
|
| // Called when a GOAWAY frame has been parsed.
|
| virtual void OnGoAway(SpdyStreamId last_accepted_stream_id,
|
| - SpdyGoAwayStatus status) = 0;
|
| + SpdyErrorCode error_code) = 0;
|
|
|
| // Called when a HEADERS frame is received.
|
| // Note that header block data is not included. See OnHeaderFrameStart().
|
|
|