| Index: net/spdy/spdy_framer.h
|
| diff --git a/net/spdy/spdy_framer.h b/net/spdy/spdy_framer.h
|
| index bb6e61d8fe917fb2e33c9f16a2ebaa673165a18f..7ce2c850e50eac3e087ddf76ba182e00e7fb1372 100644
|
| --- a/net/spdy/spdy_framer.h
|
| +++ b/net/spdy/spdy_framer.h
|
| @@ -565,14 +565,14 @@ class NET_EXPORT_PRIVATE SpdyFramer {
|
| static const char* StatusCodeToString(int status_code);
|
| static const char* FrameTypeToString(SpdyFrameType type);
|
|
|
| - SpdyMajorVersion protocol_version() const { return spdy_version_; }
|
| + SpdyMajorVersion protocol_version() const { return protocol_version_; }
|
|
|
| bool probable_http_response() const { return probable_http_response_; }
|
|
|
| SpdyStreamId expect_continuation() const { return expect_continuation_; }
|
|
|
| SpdyPriority GetLowestPriority() const {
|
| - return spdy_version_ < SPDY3 ? 3 : 7;
|
| + return protocol_version_ < SPDY3 ? 3 : 7;
|
| }
|
|
|
| SpdyPriority GetHighestPriority() const { return 0; }
|
| @@ -774,8 +774,8 @@ class NET_EXPORT_PRIVATE SpdyFramer {
|
|
|
| std::string display_protocol_;
|
|
|
| - // The major SPDY version to be spoken/understood by this framer.
|
| - const SpdyMajorVersion spdy_version_;
|
| + // The protocol version to be spoken/understood by this framer.
|
| + const SpdyMajorVersion protocol_version_;
|
|
|
| // Tracks if we've ever gotten far enough in framing to see a control frame of
|
| // type SYN_STREAM or SYN_REPLY.
|
|
|