Searched refs:webFrame (Results 51 - 75 of 103) sorted by relevance

12345

/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebDataSource.h62 virtual HRESULT STDMETHODCALLTYPE webFrame(
H A DWebFrame.cpp158 return static_cast<WebFrameLoaderClient*>(frameLoaderClient)->webFrame(); // eek, is there a better way than static cast?
162 Frame* core(WebFrame* webFrame) argument
164 if (!webFrame)
166 return webFrame->impl();
170 Frame* core(const WebFrame* webFrame) argument
172 if (!webFrame)
174 return const_cast<WebFrame*>(webFrame)->impl();
763 if (WebFrame* webFrame = kit(coreFrame->tree()->parent()))
764 hr = webFrame->QueryInterface(IID_IWebFrame, (void**) frame);
811 WebFrame* webFrame
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebContextUserMessageCoders.h131 coder.m_root = coder.m_process->webFrame(frameID);
H A DWebPageProxy.cpp2230 WebFrameProxy* frame = m_process->webFrame(frameID);
2247 WebFrameProxy* frame = m_process->webFrame(frameID);
2263 WebFrameProxy* frame = m_process->webFrame(frameID);
2291 WebFrameProxy* frame = m_process->webFrame(frameID);
2337 WebFrameProxy* frame = m_process->webFrame(frameID);
2350 WebFrameProxy* frame = m_process->webFrame(frameID);
2365 WebFrameProxy* frame = m_process->webFrame(frameID);
2382 WebFrameProxy* frame = m_process->webFrame(frameID);
2399 WebFrameProxy* frame = m_process->webFrame(frameID);
2414 WebFrameProxy* frame = m_process->webFrame(frameI
[all...]
H A DWebProcessProxy.cpp483 WebFrameProxy* WebProcessProxy::webFrame(uint64_t frameID) const function in class:WebKit::WebProcessProxy
578 WebFrameProxy* frame = webFrame(frameID);
594 WebFrameProxy* frame = webFrame(frameID);
612 WebFrameProxy* frame = webFrame(frameID);
627 WebFrameProxy* frame = webFrame(frameID);
H A DWebProcessProxy.h89 WebFrameProxy* webFrame(uint64_t) const;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/
H A DInjectedBundleUserMessageCoders.h132 coder.m_root = WebProcess::shared().webFrame(frameID);
H A DInjectedBundle.cpp168 webFrameLoaderClient->webFrame()->page()->setTabToLinksEnabled(enabled);
177 webFrameLoaderClient->webFrame()->page()->setAsynchronousPluginInitializationEnabled(enabled);
186 webFrameLoaderClient->webFrame()->page()->setAsynchronousPluginInitializationEnabledForAllPlugins(enabled);
195 webFrameLoaderClient->webFrame()->page()->setArtificialPluginInitializationDelayEnabled(enabled);
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/
H A DWebNetscapePluginStream.mm165 ASSERT(core([view webFrame])->document()->securityOrigin()->canDisplay([request URL]));
174 String referrer = SecurityPolicy::generateReferrerHeader(core([view webFrame])->document()->referrerPolicy(), [request URL], core([view webFrame])->loader()->outgoingReferrer());
289 m_loader = resourceLoadScheduler()->schedulePluginStreamLoad(core([m_pluginView.get() webFrame]), this, m_request.get());
H A DWebPluginDatabase.mm337 - (void)removePluginInstanceViewsFor:(WebFrame*)webFrame
344 NSView <WebDocumentView> *documentView = [[webFrame frameView] documentView];
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebPDFRepresentation.mm125 WebPDFView *view = (WebPDFView *)[[[dataSource webFrame] frameView] documentView];
H A DWebViewInternal.h99 - (void)_dispatchDidReceiveIconFromWebFrame:(WebFrame *)webFrame;
182 - (void)removePluginInstanceViewsFor:(WebFrame*)webFrame;
H A DWebPDFView.mm290 [[dataSource webFrame] _clearSelectionInOtherFrames];
374 WebView *webView = [[dataSource webFrame] webView];
584 WebFrame *frame = [dataSource webFrame];
649 if (range && !isFrameInRange([dataSource webFrame], range))
772 WebFrame *frame = [dataSource webFrame];
982 Frame* frame = core([dataSource webFrame]);
994 CallUIDelegate([self _webView], @selector(webView:printFrameView:), [[dataSource webFrame] frameView]);
1007 CallUIDelegate([self _webView], @selector(webView:saveFrameView:showingPanel:), [[dataSource webFrame] frameView], NO);
1320 [[webView _UIDelegateForwarder] webView:webView didScrollDocumentInFrameView:[[dataSource webFrame] frameView]];
H A DWebFrame.mm235 return static_cast<WebFrameLoaderClient*>(frameLoaderClient)->webFrame();
255 WebView *getWebView(WebFrame *webFrame)
257 Frame* coreFrame = core(webFrame);
369 WebFrame *webFrame = kit(frame);
371 [[[webFrame frameView] _scrollView] setDrawsBackground:NO];
372 [[[webFrame frameView] _scrollView] setBackgroundColor:backgroundColor];
452 WebFrame *webFrame = kit(frame);
453 if ([webFrame _hasSelection])
454 return webFrame;
1072 RetainPtr<WebFrame> webFrame(ki
[all...]
/macosx-10.9.5/WebKit-7537.78.2/win/WebCoreSupport/
H A DWebChromeClient.cpp295 WebFrame* webFrame = m_webView->topLevelFrame(); local
296 if (webFrame)
297 webFrame->setAllowsScrolling(b);
302 WebFrame* webFrame = m_webView->topLevelFrame(); local
304 if (webFrame)
305 webFrame->allowsScrolling(&b);
364 WebFrame* webFrame = kit(frame); local
365 ui->runBeforeUnloadConfirmPanelWithMessage(m_webView, BString(message), webFrame, &result);
H A DWebFrameLoaderClient.cpp106 WebFrameLoaderClient::WebFrameLoaderClient(WebFrame* webFrame) argument
107 : m_webFrame(webFrame)
112 ASSERT_ARG(webFrame, webFrame);
1088 COMPtr<WebFrame> webFrame(AdoptCOM, WebFrame::createInstance());
1090 RefPtr<Frame> childFrame = webFrame->init(m_webFrame->webView(), coreFrame->page(), ownerElement);
/macosx-10.9.5/WebKit-7537.78.2/efl/WebCoreSupport/
H A DEditorClientEfl.cpp148 Evas_Object* webFrame = EWKPrivate::kitFrame(coreFrame);
149 ewk_frame_editor_client_selection_changed(webFrame);
H A DFrameLoaderClientEfl.h53 Evas_Object* webFrame() const { return m_frame; } function in class:WebCore::FrameLoaderClientEfl
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/Plugins/
H A DPluginView.cpp258 WebPage* webPage = webFrameLoaderClient ? webFrameLoaderClient->webFrame()->page() : 0;
1135 WebFrame* targetWebFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0;
1574 void PluginView::didFinishLoad(WebFrame* webFrame) argument
1576 RefPtr<URLRequest> request = m_pendingFrameLoads.take(webFrame);
1578 webFrame->setLoadListener(0);
1583 void PluginView::didFailLoad(WebFrame* webFrame, bool wasCancelled) argument
1585 RefPtr<URLRequest> request = m_pendingFrameLoads.take(webFrame);
1587 webFrame->setLoadListener(0);
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebElementDictionary.mm182 return [[[self _domNode] ownerDocument] webFrame];
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/gtk/
H A DWebKitWebPage.cpp70 static CString getProvisionalURLForFrame(WebFrame* webFrame) argument
72 DocumentLoader* documentLoader = webFrame->coreFrame()->loader()->provisionalDocumentLoader();
/macosx-10.9.5/WebKit-7537.78.2/mac/WebCoreSupport/
H A DWebChromeClient.mm621 WebFrame *webFrame = kit(frame);
623 CallUIDelegate(m_webView, @selector(webView:printFrame:), webFrame);
625 CallUIDelegate(m_webView, @selector(webView:printFrameView:), [webFrame frameView]);
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DChromeClientQt.cpp354 QWebFrameAdapter* webFrame = QWebFrameAdapter::kit(f); local
355 bool rc = m_webPage->javaScriptPrompt(webFrame, message, defaultValue, &x);
/macosx-10.9.5/WebKit-7537.78.2/gtk/WebCoreSupport/
H A DFrameLoaderClientGtk.h48 WebKitWebFrame* webFrame() const { return m_frame; } function in class:WebKit::FrameLoaderClient
/macosx-10.9.5/WebKit-7537.78.2/qt/Api/
H A Dqwebelement.h100 QWebFrame *webFrame() const;

Completed in 303 milliseconds

12345