Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4750)

Unified Diff: chrome/test/chromedriver/net/net_util_unittest.cc

Issue 637933002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/chromedriver/net/net_util.cc ('k') | chrome/test/chromedriver/net/sync_websocket_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « chrome/test/chromedriver/net/net_util.cc ('k') | chrome/test/chromedriver/net/sync_websocket_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698