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

Unified Diff: sql/test/sql_test_suite.h

Issue 817403002: Standardize usage of virtual/override/final specifiers in sql/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « sql/statement_unittest.cc ('k') | sql/transaction_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/test/sql_test_suite.h
diff --git a/sql/test/sql_test_suite.h b/sql/test/sql_test_suite.h
index a9663fcc44a421a7e05ae373ad0fc19f18ce6cc7..86c09168628699982e5fd9a96220b74cd10713a7 100644
--- a/sql/test/sql_test_suite.h
+++ b/sql/test/sql_test_suite.h
@@ -13,12 +13,12 @@ namespace sql {
class SQLTestSuite : public base::TestSuite {
public:
SQLTestSuite(int argc, char** argv);
- virtual ~SQLTestSuite();
+ ~SQLTestSuite() override;
protected:
// Overridden from base::TestSuite:
- virtual void Initialize() override;
- virtual void Shutdown() override;
+ void Initialize() override;
+ void Shutdown() override;
private:
DISALLOW_COPY_AND_ASSIGN(SQLTestSuite);
« no previous file with comments | « sql/statement_unittest.cc ('k') | sql/transaction_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698