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

Unified Diff: Source/modules/indexeddb/IDBObjectStore.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/IDBObjectStore.h
diff --git a/Source/modules/indexeddb/IDBObjectStore.h b/Source/modules/indexeddb/IDBObjectStore.h
index d5297fec8da85089c98306932de78a182d7c6345..9bbe2856b6a75bcab0a4a3c7f4aa24a300e425ae 100644
--- a/Source/modules/indexeddb/IDBObjectStore.h
+++ b/Source/modules/indexeddb/IDBObjectStore.h
@@ -98,7 +98,7 @@ public:
const IDBObjectStoreMetadata& metadata() const { return m_metadata; }
void setMetadata(const IDBObjectStoreMetadata& metadata) { m_metadata = metadata; }
- typedef HeapVector<Member<IDBKey> > IndexKeys;
+ typedef HeapVector<Member<IDBKey>> IndexKeys;
WebIDBDatabase* backendDB() const;
@@ -118,7 +118,7 @@ private:
Member<IDBTransaction> m_transaction;
bool m_deleted;
- typedef HeapHashMap<String, Member<IDBIndex> > IDBIndexMap;
+ typedef HeapHashMap<String, Member<IDBIndex>> IDBIndexMap;
IDBIndexMap m_indexMap;
};

Powered by Google App Engine
This is Rietveld 408576698