Index: chrome/test/chromedriver/server/chromedriver_server.cc |
diff --git a/chrome/test/chromedriver/server/chromedriver_server.cc b/chrome/test/chromedriver/server/chromedriver_server.cc |
index 97725407d0b55fd375d759dd6c6899a7cd86d49a..432d6ef931b264c1e76e08bebb91bfc9060e9144 100644 |
--- a/chrome/test/chromedriver/server/chromedriver_server.cc |
+++ b/chrome/test/chromedriver/server/chromedriver_server.cc |
@@ -65,12 +65,12 @@ class HttpServer : public net::HttpServer::Delegate { |
} |
// Overridden from net::HttpServer::Delegate: |
- virtual void OnConnect(int connection_id) OVERRIDE { |
+ virtual void OnConnect(int connection_id) override { |
server_->SetSendBufferSize(connection_id, kBufferSize); |
server_->SetReceiveBufferSize(connection_id, kBufferSize); |
} |
virtual void OnHttpRequest(int connection_id, |
- const net::HttpServerRequestInfo& info) OVERRIDE { |
+ const net::HttpServerRequestInfo& info) override { |
handle_request_func_.Run( |
info, |
base::Bind(&HttpServer::OnResponse, |
@@ -79,10 +79,10 @@ class HttpServer : public net::HttpServer::Delegate { |
} |
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 {} |
private: |
void OnResponse(int connection_id, |