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

Unified Diff: Source/modules/webdatabase/DatabaseContext.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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
« no previous file with comments | « Source/modules/webdatabase/ChangeVersionWrapper.h ('k') | Source/modules/webdatabase/DatabaseManager.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/DatabaseContext.h
diff --git a/Source/modules/webdatabase/DatabaseContext.h b/Source/modules/webdatabase/DatabaseContext.h
index f2d833df64a2401824d232ff4e71beab33baf8aa..251f5900d2464c33b2918ecd14e0a8ad80c2da1b 100644
--- a/Source/modules/webdatabase/DatabaseContext.h
+++ b/Source/modules/webdatabase/DatabaseContext.h
@@ -47,12 +47,12 @@ public:
static DatabaseContext* create(ExecutionContext*);
- virtual ~DatabaseContext();
+ ~DatabaseContext() override;
DECLARE_VIRTUAL_TRACE();
// For life-cycle management (inherited from ActiveDOMObject):
- virtual void contextDestroyed() override;
- virtual void stop() override;
+ void contextDestroyed() override;
+ void stop() override;
DatabaseContext* backend();
DatabaseThread* databaseThread();
« no previous file with comments | « Source/modules/webdatabase/ChangeVersionWrapper.h ('k') | Source/modules/webdatabase/DatabaseManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698