| Index: content/browser/fileapi/isolated_context_unittest.cc
|
| diff --git a/content/browser/fileapi/isolated_context_unittest.cc b/content/browser/fileapi/isolated_context_unittest.cc
|
| index 90492a91f71341cbf60a84c90d0359af5383d448..72969344505a94beed96d1fb7627be0adf804634 100644
|
| --- a/content/browser/fileapi/isolated_context_unittest.cc
|
| +++ b/content/browser/fileapi/isolated_context_unittest.cc
|
| @@ -55,7 +55,7 @@ class IsolatedContextTest : public testing::Test {
|
| fileset_.insert(kTestPaths[i].NormalizePathSeparators());
|
| }
|
|
|
| - virtual void SetUp() {
|
| + void SetUp() override {
|
| IsolatedContext::FileInfoSet files;
|
| for (size_t i = 0; i < arraysize(kTestPaths); ++i) {
|
| std::string name;
|
| @@ -68,7 +68,7 @@ class IsolatedContextTest : public testing::Test {
|
| ASSERT_FALSE(id_.empty());
|
| }
|
|
|
| - virtual void TearDown() {
|
| + void TearDown() override {
|
| IsolatedContext::GetInstance()->RemoveReference(id_);
|
| }
|
|
|
|
|