| Index: net/websockets/websocket_channel_test.cc
|
| diff --git a/net/websockets/websocket_channel_test.cc b/net/websockets/websocket_channel_test.cc
|
| index 15163deb647c622f674f59e4472c0bb92adc2053..1ffe1e99f7cc9d935f5cc2ce7fca5f52ddf654ca 100644
|
| --- a/net/websockets/websocket_channel_test.cc
|
| +++ b/net/websockets/websocket_channel_test.cc
|
| @@ -934,7 +934,7 @@ class WebSocketChannelEventInterfaceTest : public WebSocketChannelTest {
|
| .WillByDefault(Return(CHANNEL_DELETED));
|
| }
|
|
|
| - virtual ~WebSocketChannelEventInterfaceTest() {
|
| + ~WebSocketChannelEventInterfaceTest() override {
|
| DefaultValue<ChannelState>::Clear();
|
| }
|
|
|
| @@ -969,7 +969,7 @@ class WebSocketChannelStreamTest : public WebSocketChannelTest {
|
| class WebSocketChannelSendUtf8Test
|
| : public WebSocketChannelEventInterfaceTest {
|
| public:
|
| - virtual void SetUp() {
|
| + void SetUp() override {
|
| set_stream(make_scoped_ptr(new WriteableFakeWebSocketStream));
|
| // For the purpose of the tests using this fixture, it doesn't matter
|
| // whether these methods are called or not.
|
| @@ -999,7 +999,7 @@ class WebSocketChannelFlowControlTest
|
| // mock WebSocketStream.
|
| class WebSocketChannelReceiveUtf8Test : public WebSocketChannelStreamTest {
|
| public:
|
| - virtual void SetUp() {
|
| + void SetUp() override {
|
| // For the purpose of the tests using this fixture, it doesn't matter
|
| // whether these methods are called or not.
|
| EXPECT_CALL(*mock_stream_, GetSubProtocol()).Times(AnyNumber());
|
|
|