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

Unified Diff: Source/modules/indexeddb/IDBDatabase.h

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (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/modules/indexeddb/IDBCursorWithValue.h ('k') | Source/modules/indexeddb/IDBFactory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBDatabase.h
diff --git a/Source/modules/indexeddb/IDBDatabase.h b/Source/modules/indexeddb/IDBDatabase.h
index b24d0a8f3afc0b5d55fc29ee73a0fef71d78fc12..fdce7a27f6774dec01edc2469f124273da5e7071 100644
--- a/Source/modules/indexeddb/IDBDatabase.h
+++ b/Source/modules/indexeddb/IDBDatabase.h
@@ -50,7 +50,7 @@ class DOMError;
class ExceptionState;
class ExecutionContext;
-class IDBDatabase FINAL
+class IDBDatabase final
: public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<IDBDatabase>
, public EventTargetWithInlineData
, public ActiveDOMObject {
@@ -60,7 +60,7 @@ class IDBDatabase FINAL
public:
static IDBDatabase* create(ExecutionContext*, PassOwnPtr<WebIDBDatabase>, IDBDatabaseCallbacks*);
virtual ~IDBDatabase();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
void setMetadata(const IDBDatabaseMetadata& metadata) { m_metadata = metadata; }
void indexCreated(int64_t objectStoreId, const IDBIndexMetadata&);
@@ -92,12 +92,12 @@ public:
void onComplete(int64_t);
// ActiveDOMObject
- virtual bool hasPendingActivity() const OVERRIDE;
- virtual void stop() OVERRIDE;
+ virtual bool hasPendingActivity() const override;
+ virtual void stop() override;
// EventTarget
- virtual const AtomicString& interfaceName() const OVERRIDE;
- virtual ExecutionContext* executionContext() const OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
+ virtual ExecutionContext* executionContext() const override;
bool isClosePending() const { return m_closePending; }
void forceClose();
@@ -105,7 +105,7 @@ public:
void enqueueEvent(PassRefPtrWillBeRawPtr<Event>);
using EventTarget::dispatchEvent;
- virtual bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) OVERRIDE;
+ virtual bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) override;
int64_t findObjectStoreId(const String& name) const;
bool containsObjectStore(const String& name) const
« no previous file with comments | « Source/modules/indexeddb/IDBCursorWithValue.h ('k') | Source/modules/indexeddb/IDBFactory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698