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

Unified Diff: ipc/ipc_channel_proxy_unittest.cc

Issue 815503005: Standardize usage of virtual/override/final specifiers in ipc/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « ipc/ipc_channel_posix_unittest.cc ('k') | ipc/ipc_test_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_channel_proxy_unittest.cc
diff --git a/ipc/ipc_channel_proxy_unittest.cc b/ipc/ipc_channel_proxy_unittest.cc
index 848367ec782bd2e481d7b3deba85b8b916ae09a0..6ed2470f96b5d5d52642d0e684cbd8b969105da3 100644
--- a/ipc/ipc_channel_proxy_unittest.cc
+++ b/ipc/ipc_channel_proxy_unittest.cc
@@ -232,9 +232,9 @@ class MessageCountFilter : public IPC::MessageFilter {
class IPCChannelProxyTest : public IPCTestBase {
public:
IPCChannelProxyTest() {}
- virtual ~IPCChannelProxyTest() {}
+ ~IPCChannelProxyTest() override {}
- virtual void SetUp() override {
+ void SetUp() override {
IPCTestBase::SetUp();
Init("ChannelProxyClient");
@@ -250,7 +250,7 @@ class IPCChannelProxyTest : public IPCTestBase {
ASSERT_TRUE(StartClient());
}
- virtual void TearDown() {
+ void TearDown() override {
DestroyChannelProxy();
thread_.reset();
listener_.reset();
« no previous file with comments | « ipc/ipc_channel_posix_unittest.cc ('k') | ipc/ipc_test_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698