Home | History | Annotate | Download | only in win

Lines Matching full:world

297 HRESULT FrameLoadDelegate::didClearWindowObjectForFrameInScriptWorld(IWebView* webView, IWebFrame* frame, IWebScriptWorld* world)
301 ASSERT_ARG(world, world);
302 if (!webView || !frame || !world)
306 if (FAILED(world->standardWorld(&standardWorld)))
309 if (world == standardWorld)
312 didClearWindowObjectForFrameInIsolatedWorld(frame, world);
316 void FrameLoadDelegate::didClearWindowObjectForFrameInIsolatedWorld(IWebFrame* frame, IWebScriptWorld* world)
322 JSGlobalContextRef ctx = framePrivate->globalContextForScriptWorld(world);
330 JSObjectSetProperty(ctx, globalObject, JSRetainPtr<JSStringRef>(Adopt, JSStringCreateWithUTF8CString("__worldID")).get(), JSValueMakeNumber(ctx, worldIDForWorld(world)), kJSPropertyAttributeReadOnly, 0);