Home | History | Annotate | Download | only in v8

Lines Matching defs:world

204 V8WindowShell* ScriptController::existingWindowShell(DOMWrapperWorld& world)
206 if (world.isMainWorld())
209 IsolatedWorldMap::iterator iter = m_isolatedWorlds.find(world.worldId());
215 V8WindowShell* ScriptController::windowShell(DOMWrapperWorld& world)
218 if (world.isMainWorld())
221 IsolatedWorldMap::iterator iter = m_isolatedWorlds.find(world.worldId());
225 OwnPtr<V8WindowShell> isolatedWorldShell = V8WindowShell::create(m_frame, world, m_isolate);
227 m_isolatedWorlds.set(world.worldId(), isolatedWorldShell.release());
230 if (!shell->isContextInitialized() && shell->initializeIfNeeded() && world.isMainWorld())
240 DOMWrapperWorld& world = DOMWrapperWorld::current(m_isolate);
241 return world.isIsolatedWorld() ? world.isolatedWorldHasContentSecurityPolicy() : false;
432 SecurityOrigin* origin = isolatedWorldShell->world().isolatedWorldSecurityOrigin();
595 RefPtr<DOMWrapperWorld> world = DOMWrapperWorld::ensureIsolatedWorld(worldID, extensionGroup);
596 V8WindowShell* isolatedWorldShell = windowShell(*world);