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

Unified Diff: mojo/shell/incoming_connection_listener_unittest.cc

Issue 619493002: Mojo: Convert OVERRIDE -> override in various subdirectories of mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
Index: mojo/shell/incoming_connection_listener_unittest.cc
diff --git a/mojo/shell/incoming_connection_listener_unittest.cc b/mojo/shell/incoming_connection_listener_unittest.cc
index eec22a71199f04bbe1cb25808b8ab890d986c084..2f1361e18085e0838850b485d34ac4df9d149d12 100644
--- a/mojo/shell/incoming_connection_listener_unittest.cc
+++ b/mojo/shell/incoming_connection_listener_unittest.cc
@@ -20,6 +20,7 @@
namespace mojo {
namespace shell {
namespace {
+
// Delegate implementation that expects success.
class TestDelegate : public IncomingConnectionListenerPosix::Delegate {
public:
@@ -53,6 +54,7 @@ void OnConnect(base::Closure quit_callback, int rv) {
EXPECT_EQ(net::OK, rv);
base::MessageLoop::current()->PostTask(FROM_HERE, quit_callback);
}
+
} // namespace
class IncomingConnectionListenerTest : public testing::Test {
@@ -60,7 +62,7 @@ class IncomingConnectionListenerTest : public testing::Test {
IncomingConnectionListenerTest() {}
virtual ~IncomingConnectionListenerTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
socket_path_ = temp_dir_.path().Append(FILE_PATH_LITERAL("socket"));
}

Powered by Google App Engine
This is Rietveld 408576698