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

Unified Diff: Source/modules/webdatabase/DatabaseThread.cpp

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/DatabaseThread.cpp
diff --git a/Source/modules/webdatabase/DatabaseThread.cpp b/Source/modules/webdatabase/DatabaseThread.cpp
index 80574b616991586e6efc910279f87e6d487b3ea9..16bd21fca3b2c1a63c14687b8661c018e3ca8215 100644
--- a/Source/modules/webdatabase/DatabaseThread.cpp
+++ b/Source/modules/webdatabase/DatabaseThread.cpp
@@ -108,10 +108,10 @@ void DatabaseThread::cleanupDatabaseThread()
// inconsistent or locked state.
if (m_openDatabaseSet.size() > 0) {
// As the call to close will modify the original set, we must take a copy to iterate over.
- HeapHashSet<Member<Database> > openSetCopy;
+ HeapHashSet<Member<Database>> openSetCopy;
openSetCopy.swap(m_openDatabaseSet);
- HeapHashSet<Member<Database> >::iterator end = openSetCopy.end();
- for (HeapHashSet<Member<Database> >::iterator it = openSetCopy.begin(); it != end; ++it)
+ HeapHashSet<Member<Database>>::iterator end = openSetCopy.end();
+ for (HeapHashSet<Member<Database>>::iterator it = openSetCopy.begin(); it != end; ++it)
(*it)->close();
}
m_openDatabaseSet.clear();

Powered by Google App Engine
This is Rietveld 408576698