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

Unified Diff: Source/modules/indexeddb/IDBTransaction.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/IDBTransaction.h
diff --git a/Source/modules/indexeddb/IDBTransaction.h b/Source/modules/indexeddb/IDBTransaction.h
index 2278f9d4fbd1202c6777429653d4c916900016bc..0ab6a899f722cdcb17f8567831ed27777280f0de 100644
--- a/Source/modules/indexeddb/IDBTransaction.h
+++ b/Source/modules/indexeddb/IDBTransaction.h
@@ -126,12 +126,12 @@ private:
bool m_contextStopped;
Member<DOMError> m_error;
- HeapListHashSet<Member<IDBRequest> > m_requestList;
+ HeapListHashSet<Member<IDBRequest>> m_requestList;
- typedef HeapHashMap<String, Member<IDBObjectStore> > IDBObjectStoreMap;
+ typedef HeapHashMap<String, Member<IDBObjectStore>> IDBObjectStoreMap;
IDBObjectStoreMap m_objectStoreMap;
- typedef HeapHashSet<Member<IDBObjectStore> > IDBObjectStoreSet;
+ typedef HeapHashSet<Member<IDBObjectStore>> IDBObjectStoreSet;
IDBObjectStoreSet m_deletedObjectStores;
typedef HeapHashMap<Member<IDBObjectStore>, IDBObjectStoreMetadata> IDBObjectStoreMetadataMap;

Powered by Google App Engine
This is Rietveld 408576698