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

Unified Diff: components/gcm_driver/gcm_client_impl_unittest.cc

Issue 684513002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
Index: components/gcm_driver/gcm_client_impl_unittest.cc
diff --git a/components/gcm_driver/gcm_client_impl_unittest.cc b/components/gcm_driver/gcm_client_impl_unittest.cc
index 9605cf0f29ea2036e8d5404f8748ac2f5f322865..d706276a3179321aa83956418c3e36284cf8fa95 100644
--- a/components/gcm_driver/gcm_client_impl_unittest.cc
+++ b/components/gcm_driver/gcm_client_impl_unittest.cc
@@ -236,9 +236,9 @@ class GCMClientImplTest : public testing::Test,
public GCMClient::Delegate {
public:
GCMClientImplTest();
- virtual ~GCMClientImplTest();
+ ~GCMClientImplTest() override;
- virtual void SetUp() override;
+ void SetUp() override;
void SetUpUrlFetcherFactory();
@@ -786,9 +786,9 @@ TEST_F(GCMClientImplTest, SendMessageAcknowledged) {
class GCMClientImplCheckinTest : public GCMClientImplTest {
public:
GCMClientImplCheckinTest();
- virtual ~GCMClientImplCheckinTest();
+ ~GCMClientImplCheckinTest() override;
- virtual void SetUp() override;
+ void SetUp() override;
};
GCMClientImplCheckinTest::GCMClientImplCheckinTest() {
@@ -1015,9 +1015,9 @@ TEST_F(GCMClientImplCheckinTest, CheckinWhenAccountReplaced) {
class GCMClientImplStartAndStopTest : public GCMClientImplTest {
public:
GCMClientImplStartAndStopTest();
- virtual ~GCMClientImplStartAndStopTest();
+ ~GCMClientImplStartAndStopTest() override;
- virtual void SetUp() override;
+ void SetUp() override;
void DefaultCompleteCheckin();
};

Powered by Google App Engine
This is Rietveld 408576698