🎨
This commit is contained in:
parent
78e0b80dc7
commit
c5e68ec165
1 changed files with 3 additions and 5 deletions
|
@ -110,12 +110,10 @@ class AtomRenderFrameObserver : public content::RenderFrameObserver {
|
|||
|
||||
void WillReleaseScriptContext(v8::Local<v8::Context> context,
|
||||
int world_id) override {
|
||||
if (isolated_world_) {
|
||||
if (IsIsolatedWorld(world_id))
|
||||
renderer_client_->WillReleaseScriptContext(context, render_frame_);
|
||||
} else if (IsMainWorld(world_id)) {
|
||||
bool notify_client =
|
||||
isolated_world_ ? IsIsolatedWorld(world_id) : IsMainWorld(world_id);
|
||||
if (notify_client)
|
||||
renderer_client_->WillReleaseScriptContext(context, render_frame_);
|
||||
}
|
||||
}
|
||||
|
||||
void OnDestruct() override {
|
||||
|
|
Loading…
Reference in a new issue