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

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

Issue 2617733004: binding: Changes the association among global-proxy/global/window-instance. (Closed)
Patch Set: Fixed Document.defaultView Created 3 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/bindings/core/v8/ScriptWrappable.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappable.h b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappable.h
index 227026cccaa3fb9b5a7e8c6682c1cad0a5019530..448ce1a706a85e2572403934aa9d5520fbfec57e 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappable.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappable.h
@@ -128,6 +128,14 @@ class CORE_EXPORT ScriptWrappable : public TraceWrapperBase {
return true;
}
+ // Dissociates the wrapper, if any, from this instance.
+ void unsetWrapperIfAny() {
+ if (containsWrapper()) {
+ m_mainWorldWrapper.Reset();
+ WrapperTypeInfo::wrapperDestroyed();
+ }
+ }
+
bool isEqualTo(const v8::Local<v8::Object>& other) const {
return m_mainWorldWrapper == other;
}

Powered by Google App Engine
This is Rietveld 408576698