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

Unified Diff: Source/web/DatabaseClientImpl.h

Issue 634893002: Replace OVERRIDE and FINAL with override and final in WebKit/public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.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
« no previous file with comments | « Source/web/ContextMenuClientImpl.h ('k') | Source/web/DateTimeChooserImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/DatabaseClientImpl.h
diff --git a/Source/web/DatabaseClientImpl.h b/Source/web/DatabaseClientImpl.h
index a4902e3dd1b44ef6e23c35ae5ca503efaa0ece83..12e91b76f8dd1670b3eb7e7f41a390a102ab541b 100644
--- a/Source/web/DatabaseClientImpl.h
+++ b/Source/web/DatabaseClientImpl.h
@@ -36,14 +36,14 @@
namespace blink {
-class DatabaseClientImpl FINAL : public NoBaseWillBeGarbageCollectedFinalized<DatabaseClientImpl>, public DatabaseClient {
+class DatabaseClientImpl final : public NoBaseWillBeGarbageCollectedFinalized<DatabaseClientImpl>, public DatabaseClient {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DatabaseClientImpl);
public:
static PassOwnPtrWillBeRawPtr<DatabaseClientImpl> create();
virtual ~DatabaseClientImpl();
- virtual bool allowDatabase(ExecutionContext*, const String& name, const String& displayName, unsigned long estimatedSize) OVERRIDE;
+ virtual bool allowDatabase(ExecutionContext*, const String& name, const String& displayName, unsigned long estimatedSize) override;
private:
DatabaseClientImpl();
« no previous file with comments | « Source/web/ContextMenuClientImpl.h ('k') | Source/web/DateTimeChooserImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698