Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(418)

Unified Diff: extensions/browser/api_unittest.h

Issue 685503002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698