Home | History | Annotate | Download | only in v8

Lines Matching defs:world

59 // This class represent a collection of DOM wrappers for a specific world.
72 static DOMWrapperWorld& world(v8::Handle<v8::Context> context)
74 return ScriptState::from(context)->world();
82 // we cache the world of the initializing window on worldOfInitializingWindow.
86 return world(isolate->GetCurrentContext());
91 // Associates an isolated world (see above for description) with a security
92 // origin. XMLHttpRequest instances used in that world will be considered
97 // Associated an isolated world with a Content Security Policy. Resources
98 // embedded into the main world's DOM from script executed in an isolated
99 // world should be restricted based on the isolated world's DOM, not the
100 // main world's.
102 // FIXME: Right now, resource injection simply bypasses the main world's
103 // DOM. More work is necessary to allow the isolated world's policy to be
116 static void setWorldOfInitializingWindow(DOMWrapperWorld* world)
119 worldOfInitializingWindow = world;