Chromium Code Reviews

Unified Diff: Source/bindings/core/v8/ScriptWrappable.h

Issue 369633003: Remove ScriptWrappable's destructor in Oilpan builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ScriptWrappable.h
diff --git a/Source/bindings/core/v8/ScriptWrappable.h b/Source/bindings/core/v8/ScriptWrappable.h
index e92ca760d46fc2bdeb558f0e9e8c4ad5e3f857c1..8cf3af2749f01f616736eca01353e42c104a8d27 100644
--- a/Source/bindings/core/v8/ScriptWrappable.h
+++ b/Source/bindings/core/v8/ScriptWrappable.h
@@ -205,28 +205,28 @@ public:
inline bool containsWrapper() const { return (m_wrapperOrTypeInfo & 1); }
inline bool containsTypeInfo() const { return m_wrapperOrTypeInfo && !(m_wrapperOrTypeInfo & 1); }
+#if !ENABLE(OILPAN)
protected:
~ScriptWrappable()
{
- // In Oilpan we don't need to call the destructor.
- //
- // - 'RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(!containsWrapper())' is not needed
- // because Oilpan is not using reference counting at all. If containsWrapper() is true,
- // it means that ScriptWrappable still has a wrapper. In this case, the destructor
- // must not be called since the wrapper has a persistent handle back to this ScriptWrappable object.
- // Assuming that Oilpan's GC is correct (If we cannot assume this, a lot of more things are
- // already broken), we must not hit the RELEASE_ASSERT.
- //
- // - 'm_wrapperOrTypeInfo = 0' is not needed because Oilpan's GC zeros out memory when
- // the memory is collected and added to a free list.
-#if !ENABLE(OILPAN)
// We must not get deleted as long as we contain a wrapper. If this happens, we screwed up ref
// counting somewhere. Crash here instead of crashing during a later gc cycle.
RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(!containsWrapper());
ASSERT(m_wrapperOrTypeInfo); // Assert initialization via init() even if not subsequently wrapped.
m_wrapperOrTypeInfo = 0; // Break UAF attempts to wrap.
-#endif
}
+#endif
+ // With Oilpan we don't need a ScriptWrappable destructor.
+ //
+ // - 'RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(!containsWrapper())' is not needed
+ // because Oilpan is not using reference counting at all. If containsWrapper() is true,
+ // it means that ScriptWrappable still has a wrapper. In this case, the destructor
+ // must not be called since the wrapper has a persistent handle back to this ScriptWrappable object.
+ // Assuming that Oilpan's GC is correct (If we cannot assume this, a lot of more things are
+ // already broken), we must not hit the RELEASE_ASSERT.
+ //
+ // - 'm_wrapperOrTypeInfo = 0' is not needed because Oilpan's GC zeroes out memory when
+ // the memory is collected and added to a free list.
private:
void getPersistent(v8::Persistent<v8::Object>* persistent) const
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine