| Index: content/browser/dom_storage/dom_storage_context_impl_unittest.cc
|
| diff --git a/content/browser/dom_storage/dom_storage_context_impl_unittest.cc b/content/browser/dom_storage/dom_storage_context_impl_unittest.cc
|
| index 7d4e5a25f900b2648d0ccebb85e9e165128ce192..f3744ab157bc394424bf66cfb2b46f7852166904 100644
|
| --- a/content/browser/dom_storage/dom_storage_context_impl_unittest.cc
|
| +++ b/content/browser/dom_storage/dom_storage_context_impl_unittest.cc
|
| @@ -40,7 +40,7 @@ class DOMStorageContextImplTest : public testing::Test {
|
| const bool kDontIncludeFileInfo;
|
| const bool kDoIncludeFileInfo;
|
|
|
| - virtual void SetUp() {
|
| + void SetUp() override {
|
| ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
|
| storage_policy_ = new MockSpecialStoragePolicy;
|
| task_runner_ =
|
| @@ -51,9 +51,7 @@ class DOMStorageContextImplTest : public testing::Test {
|
| task_runner_.get());
|
| }
|
|
|
| - virtual void TearDown() {
|
| - base::MessageLoop::current()->RunUntilIdle();
|
| - }
|
| + void TearDown() override { base::MessageLoop::current()->RunUntilIdle(); }
|
|
|
| void VerifySingleOriginRemains(const GURL& origin) {
|
| // Use a new instance to examine the contexts of temp_dir_.
|
|
|