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

Unified Diff: Source/bindings/v8/V8DOMWrapper.cpp

Issue 296943005: Oilpan: fix debug crashes after r174545. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
« 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/v8/V8DOMWrapper.cpp
diff --git a/Source/bindings/v8/V8DOMWrapper.cpp b/Source/bindings/v8/V8DOMWrapper.cpp
index 7efe6372bd188ba9e019f4e8b3055345d13e75eb..89005dfb2c41bdc98fa691015ae63c804622e7d2 100644
--- a/Source/bindings/v8/V8DOMWrapper.cpp
+++ b/Source/bindings/v8/V8DOMWrapper.cpp
@@ -64,7 +64,11 @@ static v8::Local<v8::Object> wrapInShadowTemplate(v8::Local<v8::Object> wrapper,
if (shadow.IsEmpty())
return v8::Local<v8::Object>();
shadow->SetPrototype(wrapper);
+#if ENABLE(OILPAN)
+ V8DOMWrapper::setNativeInfoWithPersistentHandle(wrapper, &V8HTMLDocument::wrapperTypeInfo, impl, new Persistent<Node>(impl));
haraken 2014/05/22 12:55:04 I'm not sure if this is right. If you create a pe
Mads Ager (chromium) 2014/05/22 13:12:28 I have been the cause of confusion locally here. I
sof 2014/05/22 13:19:09 Having a pair of Persistents on the same object do
+#else
V8DOMWrapper::setNativeInfo(wrapper, &V8HTMLDocument::wrapperTypeInfo, impl);
+#endif
return shadow;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698