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

Unified Diff: Source/heap/Handle.h

Issue 198213005: Oilpan: Prepare to move AbstractSQLTransactionBackend, SQLTransactionBackend, and SQLTransactionCoo… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Back to inline allocation Created 6 years, 9 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/heap/Handle.h
diff --git a/Source/heap/Handle.h b/Source/heap/Handle.h
index 448f3f973144504d50f1099ba5b64889c7e57bed..20c629c0c16beea7e2a0ed4c51547584b94d5615 100644
--- a/Source/heap/Handle.h
+++ b/Source/heap/Handle.h
@@ -430,7 +430,6 @@ public:
Member(T* raw) : m_raw(raw)
{
COMPILE_ASSERT_IS_GARBAGE_COLLECTED(T, NonGarbageCollectedObjectInMember);
- ASSERT(!raw || ThreadStateFor<ThreadingTrait<T>::Affinity>::state()->contains(raw));
tkent 2014/03/19 04:46:50 This assertion is too strict. A SQLTransaction obj
Mads Ager (chromium) 2014/03/19 06:30:54 Yes, that is true. I needed to relax the assert in
}
Member(WTF::HashTableDeletedValueType) : m_raw(reinterpret_cast<T*>(-1))

Powered by Google App Engine
This is Rietveld 408576698