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

Unified Diff: Source/modules/webdatabase/SQLTransactionCoordinator.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/webdatabase/SQLTransactionCoordinator.h
diff --git a/Source/modules/webdatabase/SQLTransactionCoordinator.h b/Source/modules/webdatabase/SQLTransactionCoordinator.h
index 5e0a8d60396973c0e9e4138a99194a18dedb16bc..2826ffb8d359bcd9548573d3153aa9ecbee1b49d 100644
--- a/Source/modules/webdatabase/SQLTransactionCoordinator.h
+++ b/Source/modules/webdatabase/SQLTransactionCoordinator.h
@@ -52,12 +52,12 @@ public:
void shutdown();
private:
- typedef HeapDeque<Member<SQLTransactionBackend> > TransactionsQueue;
+ typedef HeapDeque<Member<SQLTransactionBackend>> TransactionsQueue;
struct CoordinationInfo {
ALLOW_ONLY_INLINE_ALLOCATION();
public:
TransactionsQueue pendingTransactions;
- HeapHashSet<Member<SQLTransactionBackend> > activeReadTransactions;
+ HeapHashSet<Member<SQLTransactionBackend>> activeReadTransactions;
Member<SQLTransactionBackend> activeWriteTransaction;
void trace(Visitor* visitor)

Powered by Google App Engine
This is Rietveld 408576698