Home
last modified time | relevance | path

Searched refs:pageRef (Results 1 – 20 of 20) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/API/C/
DWKPage.cpp48 WKContextRef WKPageGetContext(WKPageRef pageRef) in WKPageGetContext() argument
50 return toAPI(toImpl(pageRef)->process()->context()); in WKPageGetContext()
53 WKPageGroupRef WKPageGetPageGroup(WKPageRef pageRef) in WKPageGetPageGroup() argument
55 return toAPI(toImpl(pageRef)->pageGroup()); in WKPageGetPageGroup()
58 void WKPageLoadURL(WKPageRef pageRef, WKURLRef URLRef) in WKPageLoadURL() argument
60 toImpl(pageRef)->loadURL(toWTFString(URLRef)); in WKPageLoadURL()
63 void WKPageLoadURLRequest(WKPageRef pageRef, WKURLRequestRef urlRequestRef) in WKPageLoadURLRequest() argument
65 toImpl(pageRef)->loadURLRequest(toImpl(urlRequestRef)); in WKPageLoadURLRequest()
68 void WKPageLoadHTMLString(WKPageRef pageRef, WKStringRef htmlStringRef, WKURLRef baseURLRef) in WKPageLoadHTMLString() argument
70 toImpl(pageRef)->loadHTMLString(toWTFString(htmlStringRef), toWTFString(baseURLRef)); in WKPageLoadHTMLString()
[all …]
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
DWKBundlePage.cpp49 void WKBundlePageSetContextMenuClient(WKBundlePageRef pageRef, WKBundlePageContextMenuClient* wkCli… in WKBundlePageSetContextMenuClient() argument
53 toImpl(pageRef)->initializeInjectedBundleContextMenuClient(wkClient); in WKBundlePageSetContextMenuClient()
56 void WKBundlePageSetEditorClient(WKBundlePageRef pageRef, WKBundlePageEditorClient* wkClient) in WKBundlePageSetEditorClient() argument
60 toImpl(pageRef)->initializeInjectedBundleEditorClient(wkClient); in WKBundlePageSetEditorClient()
63 void WKBundlePageSetFormClient(WKBundlePageRef pageRef, WKBundlePageFormClient* wkClient) in WKBundlePageSetFormClient() argument
67 toImpl(pageRef)->initializeInjectedBundleFormClient(wkClient); in WKBundlePageSetFormClient()
70 void WKBundlePageSetPageLoaderClient(WKBundlePageRef pageRef, WKBundlePageLoaderClient* wkClient) in WKBundlePageSetPageLoaderClient() argument
74 toImpl(pageRef)->initializeInjectedBundleLoaderClient(wkClient); in WKBundlePageSetPageLoaderClient()
77 void WKBundlePageSetResourceLoadClient(WKBundlePageRef pageRef, WKBundlePageResourceLoadClient* wkC… in WKBundlePageSetResourceLoadClient() argument
81 toImpl(pageRef)->initializeInjectedBundleResourceLoadClient(wkClient); in WKBundlePageSetResourceLoadClient()
[all …]
/external/webkit/Tools/MiniBrowser/mac/
DBrowserWindowController.m71 WKPageLoadURL(_webView.pageRef, url);
115 WKPageReload(_webView.pageRef);
125 WKPageGoBack(_webView.pageRef);
130 WKPageGoForward(_webView.pageRef);
138 return _webView && WKPageCanGoBack(_webView.pageRef);
141 return _webView && WKPageCanGoForward(_webView.pageRef);
154 BOOL canCloseImmediately = WKPageTryClose(_webView.pageRef);
166 WKPageClose(_webView.pageRef);
167 WKRelease(_webView.pageRef);
176 …n _zoomTextOnly ? WKPageGetTextZoomFactor(_webView.pageRef) : WKPageGetPageZoomFactor(_webView.pag…
[all …]
/external/webkit/Source/WebKit2/UIProcess/API/qt/
Dqwkpage.cpp453 WKPageSetPageLoaderClient(pageRef(), &loadClient); in QWKPage()
496 WKPageSetPageUIClient(pageRef(), &uiClient); in QWKPage()
594 WKPageRef QWKPage::pageRef() const in pageRef() function in QWKPage
607 WKPageGroupRef pageGroupRef = WKPageGetPageGroup(pageRef()); in preferences()
622 WKPageSetCustomUserAgent(pageRef(), wkUserAgent.get()); in setCustomUserAgent()
627 return WKStringCopyQString(WKPageCopyCustomUserAgent(pageRef())); in customUserAgent()
633 WKPageLoadURL(pageRef(), wkurl.get()); in load()
643 WKRetainPtr<WKFrameRef> frame = WKPageGetMainFrame(pageRef()); in url()
651 return WKStringCopyQString(WKPageCopyTitle(pageRef())); in title()
662 return WKPageGetTextZoomFactor(pageRef()); in textZoomFactor()
[all …]
DClientImpl.cpp152 WKRetain(newPage->pageRef()); in qt_wk_createNewPage()
153 return newPage->pageRef(); in qt_wk_createNewPage()
Dqgraphicswkview.cpp51 WKPageRef pageRef() const { return page->pageRef(); } in pageRef() function
Dqwkpage.h84 WKPageRef pageRef() const;
/external/webkit/Source/WebKit2/UIProcess/qt/
DTiledDrawingAreaProxyQt.cpp62 return toImpl(m_webView->page()->pageRef()); in page()
DChunkedUpdateDrawingAreaProxyQt.cpp44 return toImpl(m_webView->page()->pageRef()); in page()
/external/webkit/Source/WebKit2/UIProcess/API/mac/
DWKView.h45 @property(readonly) WKPageRef pageRef;
DPDFViewController.mm389 return toImpl([m_wkView pageRef]);
DWKView.mm262 - (WKPageRef)pageRef
/external/webkit/Tools/WebKitTestRunner/qt/
DPlatformWebViewQt.cpp77 return m_view->wkView()->page()->pageRef(); in page()
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
DInjectedBundlePage.cpp1013 bool InjectedBundlePage::supportsFullScreen(WKBundlePageRef pageRef, WKFullScreenKeyboardRequestTyp… in supportsFullScreen() argument
1020 void InjectedBundlePage::enterFullScreenForElement(WKBundlePageRef pageRef, WKBundleNodeHandleRef e… in enterFullScreenForElement() argument
1024 WKBundlePageWillEnterFullScreen(pageRef); in enterFullScreenForElement()
1025 WKBundlePageDidEnterFullScreen(pageRef); in enterFullScreenForElement()
1028 void InjectedBundlePage::exitFullScreenForElement(WKBundlePageRef pageRef, WKBundleNodeHandleRef el… in exitFullScreenForElement() argument
1032 WKBundlePageWillExitFullScreen(pageRef); in exitFullScreenForElement()
1033 WKBundlePageDidExitFullScreen(pageRef); in exitFullScreenForElement()
/external/webkit/Tools/WebKitTestRunner/mac/
DPlatformWebViewMac.mm58 return [m_view pageRef];
/external/webkit/Source/WebKit2/UIProcess/mac/
DChunkedUpdateDrawingAreaProxyMac.mm42 return toImpl([m_webView pageRef]);
DWebInspectorProxyMac.mm89 return toImpl(m_inspectorView.get().pageRef);
DWKFullScreenWindowController.mm476 WebPageProxy* webPage = toImpl([_webView pageRef]);
/external/webkit/Tools/TestWebKitAPI/mac/
DPlatformWebViewMac.mm60 return [m_view pageRef];
/external/webkit/Source/WebKit2/
DChangeLog-2011-02-1642231 (QGraphicsWKViewPrivate::pageRef):
42279 (QWKPage::pageRef):