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

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

Issue 2693893007: binding: Changes the association among global-proxy/global/window-instance (2nd attempt). (Closed)
Patch Set: Fixed a typo in DOMWrapperWorld::DissociateDOMWindowWrappersInAllWorlds. Created 3 years, 8 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/DOMWrapperWorld.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/DOMWrapperWorld.h b/third_party/WebKit/Source/bindings/core/v8/DOMWrapperWorld.h
index cfc5b059d3da0741700022e0bfd4c7477dbd240c..08c2601f1735dd919f8bf06836e7c4895598467e 100644
--- a/third_party/WebKit/Source/bindings/core/v8/DOMWrapperWorld.h
+++ b/third_party/WebKit/Source/bindings/core/v8/DOMWrapperWorld.h
@@ -133,7 +133,6 @@ class CORE_EXPORT DOMWrapperWorld : public RefCounted<DOMWrapperWorld> {
int GetWorldId() const { return world_id_; }
DOMDataStore& DomDataStore() const { return *dom_data_store_; }
- public:
template <typename T>
void RegisterDOMObjectHolder(v8::Isolate*, T*, v8::Local<v8::Value>);
@@ -152,6 +151,30 @@ class CORE_EXPORT DOMWrapperWorld : public RefCounted<DOMWrapperWorld> {
// out of DOMWrapperWorld.
static int GenerateWorldIdForType(WorldType);
+ // Dissociates all wrappers in all worlds associated with |script_wrappable|.
+ //
+ // Do not use this function except for DOMWindow. Only DOMWindow needs to
+ // dissociate wrappers from the ScriptWrappable because of the following two
+ // reasons.
+ //
+ // Reason 1) Case of the main world
+ // A DOMWindow may be collected by Blink GC *before* V8 GC collects the
+ // wrapper because the wrapper object associated with a DOMWindow is a global
+ // proxy, which remains after navigations. We don't want V8 GC to reset the
+ // weak persistent handle to a wrapper within the DOMWindow
+ // (ScriptWrappable::main_world_wrapper_) *after* Blink GC collects the
+ // DOMWindow because it's use-after-free. Thus, we need to dissociate the
+ // wrapper in advance.
+ //
+ // Reason 2) Case of isolated worlds
+ // As same, a DOMWindow may be collected before the wrapper gets collected.
+ // A DOMWrapperMap supports mapping from ScriptWrappable* to v8::Global<T>,
+ // and we don't want to leave an entry of an already-dead DOMWindow* to the
+ // persistent handle for the global proxy object, especially considering that
+ // the address to the already-dead DOMWindow* may be re-used.
+ friend class DOMWindow;
+ static void DissociateDOMWindowWrappersInAllWorlds(ScriptWrappable*);
+
const WorldType world_type_;
const int world_id_;
std::unique_ptr<DOMDataStore> dom_data_store_;

Powered by Google App Engine
This is Rietveld 408576698