| Index: content/browser/quota/mock_quota_manager_unittest.cc
|
| diff --git a/content/browser/quota/mock_quota_manager_unittest.cc b/content/browser/quota/mock_quota_manager_unittest.cc
|
| index eb1337ef021e069efc546636ac7776f0434174ce..706ca821972431659c3a1e2f7ae4918d7c1f364a 100644
|
| --- a/content/browser/quota/mock_quota_manager_unittest.cc
|
| +++ b/content/browser/quota/mock_quota_manager_unittest.cc
|
| @@ -42,7 +42,7 @@ class MockQuotaManagerTest : public testing::Test {
|
| weak_factory_(this) {
|
| }
|
|
|
| - virtual void SetUp() {
|
| + void SetUp() override {
|
| ASSERT_TRUE(data_dir_.CreateUniqueTempDir());
|
| policy_ = new MockSpecialStoragePolicy;
|
| manager_ = new MockQuotaManager(false /* is_incognito */,
|
| @@ -52,7 +52,7 @@ class MockQuotaManagerTest : public testing::Test {
|
| policy_.get());
|
| }
|
|
|
| - virtual void TearDown() {
|
| + void TearDown() override {
|
| // Make sure the quota manager cleans up correctly.
|
| manager_ = NULL;
|
| base::RunLoop().RunUntilIdle();
|
|
|