Searched refs:webFrame (Results 1 - 25 of 103) sorted by relevance

12345

/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DGeolocationPermissionClientQt.cpp62 void GeolocationPermissionClientQt::requestGeolocationPermissionForFrame(QWebFrameAdapter* webFrame, Geolocation* listener) argument
64 m_pendingPermissionRequests.insert(webFrame, listener);
66 QWebPageAdapter* page = QWebPageAdapter::kit(webFrame->frame->page());
67 page->geolocationPermissionRequested(webFrame);
71 void GeolocationPermissionClientQt::cancelGeolocationPermissionRequestForFrame(QWebFrameAdapter* webFrame, Geolocation* listener) argument
73 m_pendingPermissionRequests.remove(webFrame);
75 QWebPageAdapter* page = QWebPageAdapter::kit(webFrame->frame->page());
76 page->geolocationPermissionRequestCancelled(webFrame);
79 void GeolocationPermissionClientQt::setPermission(QWebFrameAdapter* webFrame, bool granted) argument
81 if (!m_pendingPermissionRequests.contains(webFrame))
[all...]
H A DGeolocationClientQt.cpp122 QWebFrameAdapter* webFrame = QWebFrameAdapter::kit(geolocation->frame()); local
123 GeolocationPermissionClientQt::geolocationPermissionClient()->requestGeolocationPermissionForFrame(webFrame, geolocation);
129 QWebFrameAdapter* webFrame = QWebFrameAdapter::kit(geolocation->frame()); local
130 GeolocationPermissionClientQt::geolocationPermissionClient()->cancelGeolocationPermissionRequestForFrame(webFrame, geolocation);
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebHistoryDelegate.h34 - (void)webView:(WebView *)webView didNavigateWithNavigationData:(WebNavigationData *)navigationData inFrame:(WebFrame *)webFrame;
36 - (void)webView:(WebView *)webView didPerformClientRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame;
38 - (void)webView:(WebView *)webView didPerformServerRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame;
40 - (void)webView:(WebView *)webView updateHistoryTitle:(NSString *)title forURL:(NSString *)url inFrame:(WebFrame *)webFrame;
H A DWebScriptDebugDelegate.h56 forWebFrame:(WebFrame *)webFrame;
63 forWebFrame:(WebFrame *)webFrame;
70 forWebFrame:(WebFrame *)webFrame;
76 forWebFrame:(WebFrame *)webFrame;
82 forWebFrame:(WebFrame *)webFrame;
88 forWebFrame:(WebFrame *)webFrame;
95 forWebFrame:(WebFrame *)webFrame;
101 forWebFrame:(WebFrame *)webFrame;
H A DWebScriptDebugger.mm88 WebFrame *webFrame = toWebFrame(debuggerCallFrame.dynamicGlobalObject());
90 m_topCallFrame = adoptNS([[WebScriptCallFrame alloc] _initWithGlobalObject:core(webFrame)->script()->windowScriptObject() debugger:this caller:m_topCallFrame.get() debuggerCallFrame:debuggerCallFrame]);
93 WebView *webView = [webFrame webView];
96 CallScriptDebugDelegate(implementations->didEnterCallFrameFunc, webView, @selector(webView:didEnterCallFrame:sourceId:line:forWebFrame:), m_topCallFrame.get(), static_cast<NSInteger>(0), -1, webFrame);
113 WebFrame *webFrame = toWebFrame(exec->dynamicGlobalObject());
114 WebView *webView = [webFrame webView];
120 CallScriptDebugDelegate(implementations->didParseSourceFunc, webView, @selector(webView:didParseSource:baseLineNumber:fromURL:sourceId:forWebFrame:), nsSource, firstLine, nsURL, sourceProvider->asID(), webFrame);
122 CallScriptDebugDelegate(implementations->didParseSourceFunc, webView, @selector(webView:didParseSource:fromURL:sourceId:forWebFrame:), nsSource, [nsURL absoluteString], sourceProvider->asID(), webFrame);
130 CallScriptDebugDelegate(implementations->failedToParseSourceFunc, webView, @selector(webView:failedToParseSource:baseLineNumber:fromURL:withError:forWebFrame:), nsSource, firstLine, nsURL, error, webFrame);
146 WebFrame *webFrame
[all...]
H A DWebFrameView.h47 @method webFrame
51 - (WebFrame *)webFrame;
H A DWebJSPDFDoc.mm50 WebView *webView = [[dataSource webFrame] webView];
51 CallUIDelegate(webView, @selector(webView:printFrameView:), [[dataSource webFrame] frameView]);
H A DWebHTMLRepresentation.mm168 if (!_private->includedInWebKitStatistics && [[dataSource webFrame] _isIncludedInWebKitStatistics]) {
181 WebFrame *webFrame = [dataSource webFrame];
182 if (!webFrame)
186 [webFrame _commitData:data];
189 Frame* coreFrame = core(webFrame);
212 WebFrame* webFrame = [dataSource webFrame];
219 if (!webFrame)
221 WebView *webView = [webFrame webVie
[all...]
H A DWebFrameViewInternal.h39 - (void)_setWebFrame:(WebFrame *)webFrame;
H A DWebDataSource.h82 @method webFrame
85 - (WebFrame *)webFrame;
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebHistoryDelegate.idl44 HRESULT didNavigateWithNavigationData([in] IWebView* webView, [in] IWebNavigationData* navigationData, [in] IWebFrame* webFrame);
45 HRESULT didPerformClientRedirectFromURL([in] IWebView* webView, [in] BSTR sourceURL, [in] BSTR destinationURL, [in] IWebFrame* webFrame);
46 HRESULT didPerformServerRedirectFromURL([in] IWebView* webView, [in] BSTR sourceURL, [in] BSTR destinationURL, [in] IWebFrame* webFrame);
H A DIWebFrameView.idl48 @method webFrame
51 - (WebFrame *)webFrame;
53 HRESULT webFrame([out, retval] IWebFrame** frame);
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/
H A DWebPluginContainer.h64 @method webFrame
65 @discussion The webFrame method allows the plug-in to access the WebFrame that
70 - (WebFrame *)webFrame;
H A DWebPluginContainerCheck.h39 - (WebFrame *)webFrame;
H A DWebPluginController.h68 - (WebFrame *)webFrame;
H A DWebPluginDatabase.h64 - (void)removePluginInstanceViewsFor:(WebFrame *)webFrame;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/Geolocation/
H A DGeolocationPermissionRequestManager.cpp66 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
67 ASSERT(webFrame);
71 m_page->send(Messages::WebPageProxy::RequestGeolocationPermissionForFrame(geolocationID, webFrame->frameID(), origin->databaseIdentifier()));
/macosx-10.9.5/WebKit-7537.78.2/gtk/tests/
H A Dtestwebframe.c97 WebKitWebFrame* webFrame; local
103 webFrame = webkit_web_view_get_main_frame(webView);
104 g_assert_cmpint(G_OBJECT(webFrame)->ref_count, ==, 1);
107 g_object_ref(webFrame);
108 g_assert_cmpint(G_OBJECT(webFrame)->ref_count, ==, 2);
116 g_assert_cmpint(G_OBJECT(webFrame)->ref_count, ==, 1);
117 g_object_unref(webFrame);
120 static gboolean print_requested_cb(WebKitWebView* webView, WebKitWebFrame* webFrame, GMainLoop* loop) argument
183 WebKitWebFrame* webFrame = webkit_web_view_get_main_frame(webView); local
189 result = webkit_web_frame_print_full (webFrame, operatio
[all...]
/macosx-10.9.5/WebKit-7537.78.2/gtk/WebCoreSupport/
H A DGeolocationClientGtk.cpp73 WebKitWebFrame* webFrame = kit(geolocation->frame()); local
74 GRefPtr<WebKitGeolocationPolicyDecision> policyDecision(adoptGRef(webkit_geolocation_policy_decision_new(webFrame, geolocation)));
77 g_signal_emit_by_name(m_webView, "geolocation-policy-decision-requested", webFrame, policyDecision.get(), &isHandled);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/
H A DInjectedBundleHitTestResult.cpp69 return webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0;
79 return webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0;
146 WebFrame* webFrame = frame();
147 if (!webFrame)
150 WebCore::Frame* coreFrame = webFrame->coreFrame();
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebCoreSupport/
H A DWebChromeClient.cpp175 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
176 ASSERT(webFrame);
177 m_page->injectedBundleFormClient().didFocusTextField(m_page, inputElement, webFrame);
183 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
185 WebProcess::shared().parentProcessConnection()->send(Messages::WebPageProxy::FocusedFrameChanged(webFrame ? webFrame->frameID() : 0), m_page->pageID());
306 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() local
338 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
351 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
368 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
574 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
584 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
681 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
[all...]
H A DWebEditorClient.cpp323 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
324 ASSERT(webFrame);
326 m_page->injectedBundleFormClient().textFieldDidBeginEditing(m_page, static_cast<HTMLInputElement*>(element), webFrame);
335 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
336 ASSERT(webFrame);
338 m_page->injectedBundleFormClient().textFieldDidEndEditing(m_page, static_cast<HTMLInputElement*>(element), webFrame);
350 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() local
362 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
400 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
412 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/DOM/
H A DWebDOMOperations.h49 @method webFrame
52 - (WebFrame *)webFrame;
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/Hosted/
H A DWebHostedNetscapePluginView.h64 - (void)webFrame:(WebFrame *)webFrame didFinishLoadWithReason:(NPReason)reason;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/Network/
H A DWebResourceLoadScheduler.cpp112 WebFrame* webFrame = webFrameLoaderClient ? webFrameLoaderClient->webFrame() : 0; local
113 WebPage* webPage = webFrame ? webFrame->page() : 0;
118 loadParameters.webFrameID = webFrame ? webFrame->frameID() : 0;
124 loadParameters.clientCredentialPolicy = (webFrame && webPage) ? resourceLoader->clientCredentialPolicy() : DoNotAskClientForAnyCredentials;

Completed in 136 milliseconds

12345