| Index: chrome/test/chromedriver/net/net_util_unittest.cc
|
| diff --git a/chrome/test/chromedriver/net/net_util_unittest.cc b/chrome/test/chromedriver/net/net_util_unittest.cc
|
| index 801620df7b51956ac419a5345b6a2b5719d62419..e06de3c98a1f93229999fbebc5cc76dc2cd49e23 100644
|
| --- a/chrome/test/chromedriver/net/net_util_unittest.cc
|
| +++ b/chrome/test/chromedriver/net/net_util_unittest.cc
|
| @@ -70,10 +70,10 @@ class FetchUrlTest : public testing::Test,
|
| }
|
|
|
| // Overridden from net::HttpServer::Delegate:
|
| - virtual void OnConnect(int connection_id) OVERRIDE {}
|
| + virtual void OnConnect(int connection_id) override {}
|
|
|
| virtual void OnHttpRequest(int connection_id,
|
| - const net::HttpServerRequestInfo& info) OVERRIDE {
|
| + const net::HttpServerRequestInfo& info) override {
|
| switch (response_) {
|
| case kSendHello:
|
| server_->Send200(connection_id, "hello", "text/plain");
|
| @@ -91,10 +91,10 @@ class FetchUrlTest : public testing::Test,
|
|
|
| virtual void OnWebSocketRequest(
|
| int connection_id,
|
| - const net::HttpServerRequestInfo& info) OVERRIDE {}
|
| + const net::HttpServerRequestInfo& info) override {}
|
| virtual void OnWebSocketMessage(int connection_id,
|
| - const std::string& data) OVERRIDE {}
|
| - virtual void OnClose(int connection_id) OVERRIDE {}
|
| + const std::string& data) override {}
|
| + virtual void OnClose(int connection_id) override {}
|
|
|
| protected:
|
| enum ServerResponse {
|
|
|