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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/Database.h

Issue 1477023003: Refactor the Heap into ThreadHeap to prepare for per thread heaps Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: third_party/WebKit/Source/modules/webdatabase/Database.h
diff --git a/third_party/WebKit/Source/modules/webdatabase/Database.h b/third_party/WebKit/Source/modules/webdatabase/Database.h
index d973a7369aee267ed145bf297ea1162bc8dc031a..81464b7b9dae2ca357c329ba59b231bdaed715cf 100644
--- a/third_party/WebKit/Source/modules/webdatabase/Database.h
+++ b/third_party/WebKit/Source/modules/webdatabase/Database.h
@@ -168,7 +168,7 @@ private:
Member<DatabaseAuthorizer> m_databaseAuthorizer;
- HeapDeque<Member<SQLTransactionBackend>> m_transactionQueue;
+ Member<HeapDeque<Member<SQLTransactionBackend>>> m_transactionQueue;
haraken 2016/01/07 08:06:21 What is this change for?
Mutex m_transactionInProgressMutex;
bool m_transactionInProgress;
bool m_isTransactionQueueEnabled;

Powered by Google App Engine
This is Rietveld 408576698