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

Unified Diff: components/leveldb_proto/proto_database_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/leveldb_proto/proto_database_impl_unittest.cc
diff --git a/components/leveldb_proto/proto_database_impl_unittest.cc b/components/leveldb_proto/proto_database_impl_unittest.cc
index 512045222811a01bfdd62f742b72d92f6755bcc0..095b9d4b2135011813e2c89967d9d87d888e4ece 100644
--- a/components/leveldb_proto/proto_database_impl_unittest.cc
+++ b/components/leveldb_proto/proto_database_impl_unittest.cc
@@ -83,13 +83,13 @@ void ExpectEntryPointersEquals(EntryMap expected,
class ProtoDatabaseImplTest : public testing::Test {
public:
- virtual void SetUp() {
+ void SetUp() override {
main_loop_.reset(new MessageLoop());
db_.reset(
new ProtoDatabaseImpl<TestProto>(main_loop_->message_loop_proxy()));
}
- virtual void TearDown() {
+ void TearDown() override {
db_.reset();
base::RunLoop().RunUntilIdle();
main_loop_.reset();

Powered by Google App Engine
This is Rietveld 408576698