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

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

Issue 864533002: Fix template angle bracket syntax in modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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: Source/modules/indexeddb/IDBDatabase.h
diff --git a/Source/modules/indexeddb/IDBDatabase.h b/Source/modules/indexeddb/IDBDatabase.h
index 466f60b722eac9bd2e2ae7023391be3af62ba932..5c7fbf76d6ab55ae4f030a39e63e829b916385cb 100644
--- a/Source/modules/indexeddb/IDBDatabase.h
+++ b/Source/modules/indexeddb/IDBDatabase.h
@@ -143,7 +143,7 @@ private:
IDBDatabaseMetadata m_metadata;
OwnPtr<WebIDBDatabase> m_backend;
Member<IDBTransaction> m_versionChangeTransaction;
- typedef HeapHashMap<int64_t, Member<IDBTransaction> > TransactionMap;
+ typedef HeapHashMap<int64_t, Member<IDBTransaction>> TransactionMap;
TransactionMap m_transactions;
bool m_closePending;
@@ -151,7 +151,7 @@ private:
// Keep track of the versionchange events waiting to be fired on this
// database so that we can cancel them if the database closes.
- WillBeHeapVector<RefPtrWillBeMember<Event> > m_enqueuedEvents;
+ WillBeHeapVector<RefPtrWillBeMember<Event>> m_enqueuedEvents;
Member<IDBDatabaseCallbacks> m_databaseCallbacks;
};

Powered by Google App Engine
This is Rietveld 408576698