| Index: net/spdy/spdy_protocol_test.cc
|
| diff --git a/net/spdy/spdy_protocol_test.cc b/net/spdy/spdy_protocol_test.cc
|
| index 3b601df338a7ca2260a0207e54eb50f9ba5e1f93..b15783a4853e79dcad8c3fc8ae21c870c1a4852d 100644
|
| --- a/net/spdy/spdy_protocol_test.cc
|
| +++ b/net/spdy/spdy_protocol_test.cc
|
| @@ -28,11 +28,11 @@ class SpdyProtocolTest
|
| : public ::testing::TestWithParam<SpdyProtocolTestTypes> {
|
| protected:
|
| virtual void SetUp() {
|
| - spdy_version_ = static_cast<net::SpdyMajorVersion>(GetParam());
|
| + spdy_version_ = static_cast<SpdyMajorVersion>(GetParam());
|
| }
|
|
|
| // Version of SPDY protocol to be used.
|
| - net::SpdyMajorVersion spdy_version_;
|
| + SpdyMajorVersion spdy_version_;
|
| };
|
|
|
| // All tests are run with two different SPDY versions: SPDY/2 and SPDY/3.
|
|
|