| Index: extensions/browser/api_unittest.h
|
| diff --git a/extensions/browser/api_unittest.h b/extensions/browser/api_unittest.h
|
| index f5473bf44d31ec4e8a27f711e2f0e09dfb3b30ec..2b1c46854f0b2bb161a9a101dced70cd1fafb5f8 100644
|
| --- a/extensions/browser/api_unittest.h
|
| +++ b/extensions/browser/api_unittest.h
|
| @@ -37,7 +37,7 @@ namespace extensions {
|
| class ApiUnitTest : public ExtensionsTest {
|
| public:
|
| ApiUnitTest();
|
| - virtual ~ApiUnitTest();
|
| + ~ApiUnitTest() override;
|
|
|
| const Extension* extension() const { return extension_.get(); }
|
| scoped_refptr<Extension> extension_ref() { return extension_; }
|
| @@ -47,7 +47,7 @@ class ApiUnitTest : public ExtensionsTest {
|
|
|
| protected:
|
| // SetUp creates and loads an empty, unpacked Extension.
|
| - virtual void SetUp() override;
|
| + void SetUp() override;
|
|
|
| // Various ways of running an API function. These methods take ownership of
|
| // |function|. |args| should be in JSON format, wrapped in a list.
|
|
|