| Index: components/nacl/browser/pnacl_translation_cache_unittest.cc
|
| diff --git a/components/nacl/browser/pnacl_translation_cache_unittest.cc b/components/nacl/browser/pnacl_translation_cache_unittest.cc
|
| index 98cfbe7f366c6df06aea6b1fdd9eb0e0eea2b526..bfc30522e854c2c9457d797048471ed534d2d18c 100644
|
| --- a/components/nacl/browser/pnacl_translation_cache_unittest.cc
|
| +++ b/components/nacl/browser/pnacl_translation_cache_unittest.cc
|
| @@ -26,9 +26,9 @@ class PnaclTranslationCacheTest : public testing::Test {
|
| protected:
|
| PnaclTranslationCacheTest()
|
| : thread_bundle_(content::TestBrowserThreadBundle::IO_MAINLOOP) {}
|
| - virtual ~PnaclTranslationCacheTest() {}
|
| - virtual void SetUp() { cache_.reset(new PnaclTranslationCache()); }
|
| - virtual void TearDown() {
|
| + ~PnaclTranslationCacheTest() override {}
|
| + void SetUp() override { cache_.reset(new PnaclTranslationCache()); }
|
| + void TearDown() override {
|
| // The destructor of PnaclTranslationCacheWriteEntry posts a task to the IO
|
| // thread to close the backend cache entry. We want to make sure the entries
|
| // are closed before we delete the backend (and in particular the destructor
|
|
|