Searched defs:pageRef (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DWKView.h45 @property(readonly) WKPageRef pageRef; variable
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqgraphicswkview.cpp51 WKPageRef pageRef() const { return page->pageRef(); } function in struct:QGraphicsWKViewPrivate
H A Dqwkpage.cpp453 WKPageSetPageLoaderClient(pageRef(), &loadClient);
496 WKPageSetPageUIClient(pageRef(), &uiClient);
594 WKPageRef QWKPage::pageRef() const function in class:QWKPage
607 WKPageGroupRef pageGroupRef = WKPageGetPageGroup(pageRef());
622 WKPageSetCustomUserAgent(pageRef(), wkUserAgent.get());
627 return WKStringCopyQString(WKPageCopyCustomUserAgent(pageRef()));
633 WKPageLoadURL(pageRef(), wkurl.get());
643 WKRetainPtr<WKFrameRef> frame = WKPageGetMainFrame(pageRef());
651 return WKStringCopyQString(WKPageCopyTitle(pageRef()));
662 return WKPageGetTextZoomFactor(pageRef());
[all...]
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePage.cpp49 void WKBundlePageSetContextMenuClient(WKBundlePageRef pageRef, WKBundlePageContextMenuClient* wkClient) argument
53 toImpl(pageRef)->initializeInjectedBundleContextMenuClient(wkClient);
56 void WKBundlePageSetEditorClient(WKBundlePageRef pageRef, WKBundlePageEditorClient* wkClient) argument
60 toImpl(pageRef)->initializeInjectedBundleEditorClient(wkClient);
63 void WKBundlePageSetFormClient(WKBundlePageRef pageRef, WKBundlePageFormClient* wkClient) argument
67 toImpl(pageRef)->initializeInjectedBundleFormClient(wkClient);
70 void WKBundlePageSetPageLoaderClient(WKBundlePageRef pageRef, WKBundlePageLoaderClient* wkClient) argument
74 toImpl(pageRef)->initializeInjectedBundleLoaderClient(wkClient);
77 void WKBundlePageSetResourceLoadClient(WKBundlePageRef pageRef, WKBundlePageResourceLoadClient* wkClient) argument
81 toImpl(pageRef)
84 WKBundlePageSetPolicyClient(WKBundlePageRef pageRef, WKBundlePagePolicyClient* wkClient) argument
91 WKBundlePageSetUIClient(WKBundlePageRef pageRef, WKBundlePageUIClient* wkClient) argument
98 WKBundlePageSetFullScreenClient(WKBundlePageRef pageRef, WKBundlePageFullScreenClient* wkClient) argument
107 WKBundlePageWillEnterFullScreen(WKBundlePageRef pageRef) argument
114 WKBundlePageDidEnterFullScreen(WKBundlePageRef pageRef) argument
121 WKBundlePageWillExitFullScreen(WKBundlePageRef pageRef) argument
128 WKBundlePageDidExitFullScreen(WKBundlePageRef pageRef) argument
135 WKBundlePageGetPageGroup(WKBundlePageRef pageRef) argument
140 WKBundlePageGetMainFrame(WKBundlePageRef pageRef) argument
145 WKBundlePageStopLoading(WKBundlePageRef pageRef) argument
150 WKBundlePageSetDefersLoading(WKBundlePageRef pageRef, bool defersLoading) argument
155 WKBundlePageCopyRenderTreeExternalRepresentation(WKBundlePageRef pageRef) argument
160 WKBundlePageExecuteEditingCommand(WKBundlePageRef pageRef, WKStringRef name, WKStringRef argument) argument
165 WKBundlePageIsEditingCommandEnabled(WKBundlePageRef pageRef, WKStringRef name) argument
170 WKBundlePageClearMainFrameName(WKBundlePageRef pageRef) argument
175 WKBundlePageClose(WKBundlePageRef pageRef) argument
180 WKBundlePageGetTextZoomFactor(WKBundlePageRef pageRef) argument
185 WKBundlePageSetTextZoomFactor(WKBundlePageRef pageRef, double zoomFactor) argument
190 WKBundlePageGetPageZoomFactor(WKBundlePageRef pageRef) argument
195 WKBundlePageSetPageZoomFactor(WKBundlePageRef pageRef, double zoomFactor) argument
200 WKBundlePageSetScaleAtOrigin(WKBundlePageRef pageRef, double scale, WKPoint origin) argument
205 WKBundlePageGetBackForwardList(WKBundlePageRef pageRef) argument
210 WKBundlePageInstallPageOverlay(WKBundlePageRef pageRef, WKBundlePageOverlayRef pageOverlayRef) argument
215 WKBundlePageUninstallPageOverlay(WKBundlePageRef pageRef, WKBundlePageOverlayRef pageOverlayRef) argument
220 WKBundlePageHasLocalDataForURL(WKBundlePageRef pageRef, WKURLRef urlRef) argument
230 WKBundlePageFindString(WKBundlePageRef pageRef, WKStringRef target, WKFindOptions findOptions) argument
235 WKBundlePageCreateSnapshotInViewCoordinates(WKBundlePageRef pageRef, WKRect rect, WKImageOptions options) argument
241 WKBundlePageCreateSnapshotInDocumentCoordinates(WKBundlePageRef pageRef, WKRect rect, WKImageOptions options) argument
247 WKBundlePageCreateScaledSnapshotInDocumentCoordinates(WKBundlePageRef pageRef, WKRect rect, double scaleFactor, WKImageOptions options) argument
254 WKBundlePageGetInspector(WKBundlePageRef pageRef) argument
[all...]
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKPage.cpp48 WKContextRef WKPageGetContext(WKPageRef pageRef) argument
50 return toAPI(toImpl(pageRef)->process()->context());
53 WKPageGroupRef WKPageGetPageGroup(WKPageRef pageRef) argument
55 return toAPI(toImpl(pageRef)->pageGroup());
58 void WKPageLoadURL(WKPageRef pageRef, WKURLRef URLRef) argument
60 toImpl(pageRef)->loadURL(toWTFString(URLRef));
63 void WKPageLoadURLRequest(WKPageRef pageRef, WKURLRequestRef urlRequestRef) argument
65 toImpl(pageRef)->loadURLRequest(toImpl(urlRequestRef));
68 void WKPageLoadHTMLString(WKPageRef pageRef, WKStringRef htmlStringRef, WKURLRef baseURLRef) argument
70 toImpl(pageRef)
73 WKPageLoadAlternateHTMLString(WKPageRef pageRef, WKStringRef htmlStringRef, WKURLRef baseURLRef, WKURLRef unreachableURLRef) argument
78 WKPageLoadPlainTextString(WKPageRef pageRef, WKStringRef plainTextStringRef) argument
83 WKPageStopLoading(WKPageRef pageRef) argument
88 WKPageReload(WKPageRef pageRef) argument
93 WKPageReloadFromOrigin(WKPageRef pageRef) argument
98 WKPageTryClose(WKPageRef pageRef) argument
103 WKPageClose(WKPageRef pageRef) argument
108 WKPageIsClosed(WKPageRef pageRef) argument
113 WKPageGoForward(WKPageRef pageRef) argument
118 WKPageCanGoForward(WKPageRef pageRef) argument
123 WKPageGoBack(WKPageRef pageRef) argument
128 WKPageCanGoBack(WKPageRef pageRef) argument
133 WKPageGoToBackForwardListItem(WKPageRef pageRef, WKBackForwardListItemRef itemRef) argument
138 WKPageGetBackForwardList(WKPageRef pageRef) argument
143 WKPageCopyTitle(WKPageRef pageRef) argument
148 WKPageGetMainFrame(WKPageRef pageRef) argument
153 WKPageGetFocusedFrame(WKPageRef pageRef) argument
158 WKPageGetFrameSetLargestFrame(WKPageRef pageRef) argument
164 WKPageGetInspector(WKPageRef pageRef) argument
170 WKPageGetEstimatedProgress(WKPageRef pageRef) argument
175 WKPageSetMemoryCacheClientCallsEnabled(WKPageRef pageRef, bool memoryCacheClientCallsEnabled) argument
180 WKPageCopyUserAgent(WKPageRef pageRef) argument
185 WKPageCopyApplicationNameForUserAgent(WKPageRef pageRef) argument
190 WKPageSetApplicationNameForUserAgent(WKPageRef pageRef, WKStringRef applicationNameRef) argument
195 WKPageCopyCustomUserAgent(WKPageRef pageRef) argument
200 WKPageSetCustomUserAgent(WKPageRef pageRef, WKStringRef userAgentRef) argument
205 WKPageSupportsTextEncoding(WKPageRef pageRef) argument
210 WKPageCopyCustomTextEncodingName(WKPageRef pageRef) argument
215 WKPageSetCustomTextEncodingName(WKPageRef pageRef, WKStringRef encodingNameRef) argument
220 WKPageTerminate(WKPageRef pageRef) argument
231 WKPageCopySessionState(WKPageRef pageRef, void *context, WKPageSessionStateFilterCallback filter) argument
236 WKPageRestoreFromSessionState(WKPageRef pageRef, WKDataRef sessionStateData) argument
241 WKPageGetTextZoomFactor(WKPageRef pageRef) argument
246 WKPageSupportsTextZoom(WKPageRef pageRef) argument
251 WKPageSetTextZoomFactor(WKPageRef pageRef, double zoomFactor) argument
256 WKPageGetPageZoomFactor(WKPageRef pageRef) argument
261 WKPageSetPageZoomFactor(WKPageRef pageRef, double zoomFactor) argument
266 WKPageSetPageAndTextZoomFactors(WKPageRef pageRef, double pageZoomFactor, double textZoomFactor) argument
271 WKPageSetScaleFactor(WKPageRef pageRef, double scale, WKPoint origin) argument
276 WKPageGetScaleFactor(WKPageRef pageRef) argument
281 WKPageSetUseFixedLayout(WKPageRef pageRef, bool fixed) argument
286 WKPageSetFixedLayoutSize(WKPageRef pageRef, WKSize size) argument
291 WKPageUseFixedLayout(WKPageRef pageRef) argument
296 WKPageFixedLayoutSize(WKPageRef pageRef) argument
301 WKPageHasHorizontalScrollbar(WKPageRef pageRef) argument
306 WKPageHasVerticalScrollbar(WKPageRef pageRef) argument
311 WKPageIsPinnedToLeftSide(WKPageRef pageRef) argument
316 WKPageIsPinnedToRightSide(WKPageRef pageRef) argument
321 WKPageCanDelete(WKPageRef pageRef) argument
326 WKPageHasSelectedRange(WKPageRef pageRef) argument
331 WKPageIsContentEditable(WKPageRef pageRef) argument
336 WKPageFindString(WKPageRef pageRef, WKStringRef string, WKFindOptions options, unsigned maxMatchCount) argument
341 WKPageHideFindUI(WKPageRef pageRef) argument
346 WKPageCountStringMatches(WKPageRef pageRef, WKStringRef string, WKFindOptions options, unsigned maxMatchCount) argument
351 WKPageSetPageContextMenuClient(WKPageRef pageRef, const WKPageContextMenuClient* wkClient) argument
358 WKPageSetPageFindClient(WKPageRef pageRef, const WKPageFindClient* wkClient) argument
365 WKPageSetPageFormClient(WKPageRef pageRef, const WKPageFormClient* wkClient) argument
372 WKPageSetPageLoaderClient(WKPageRef pageRef, const WKPageLoaderClient* wkClient) argument
379 WKPageSetPagePolicyClient(WKPageRef pageRef, const WKPagePolicyClient* wkClient) argument
386 WKPageSetPageResourceLoadClient(WKPageRef pageRef, const WKPageResourceLoadClient* wkClient) argument
393 WKPageSetPageUIClient(WKPageRef pageRef, const WKPageUIClient* wkClient) argument
400 WKPageRunJavaScriptInMainFrame(WKPageRef pageRef, WKStringRef scriptRef, void* context, WKPageRunJavaScriptFunction callback) argument
413 WKPageRunJavaScriptInMainFrame_b(WKPageRef pageRef, WKStringRef scriptRef, WKPageRunJavaScriptBlock block) argument
419 WKPageRenderTreeExternalRepresentation(WKPageRef pageRef, void* context, WKPageRenderTreeExternalRepresentationFunction callback) argument
432 WKPageRenderTreeExternalRepresentation_b(WKPageRef pageRef, WKPageRenderTreeExternalRepresentationBlock block) argument
438 WKPageGetSourceForFrame(WKPageRef pageRef, WKFrameRef frameRef, void* context, WKPageGetSourceForFrameFunction callback) argument
451 WKPageGetSourceForFrame_b(WKPageRef pageRef, WKFrameRef frameRef, WKPageGetSourceForFrameBlock block) argument
457 WKPageGetContentsAsString(WKPageRef pageRef, void* context, WKPageGetContentsAsStringFunction callback) argument
470 WKPageGetContentsAsString_b(WKPageRef pageRef, WKPageGetSourceForFrameBlock block) argument
476 WKPageForceRepaint(WKPageRef pageRef, void* context, WKPageForceRepaintFunction callback) argument
481 WKPageCopyPendingAPIRequestURL(WKPageRef pageRef) argument
498 WKPageValidateCommand(WKPageRef pageRef, WKStringRef command, void* context, WKPageValidateCommandCallback callback) argument
503 WKPageExecuteCommand(WKPageRef pageRef, WKStringRef command) argument
[all...]
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DInjectedBundlePage.cpp1013 bool InjectedBundlePage::supportsFullScreen(WKBundlePageRef pageRef, WKFullScreenKeyboardRequestType requestType) argument
1020 void InjectedBundlePage::enterFullScreenForElement(WKBundlePageRef pageRef, WKBundleNodeHandleRef elementRef) argument
1024 WKBundlePageWillEnterFullScreen(pageRef);
1025 WKBundlePageDidEnterFullScreen(pageRef);
1028 void InjectedBundlePage::exitFullScreenForElement(WKBundlePageRef pageRef, WKBundleNodeHandleRef elementRef) argument
1032 WKBundlePageWillExitFullScreen(pageRef);
1033 WKBundlePageDidExitFullScreen(pageRef);

Completed in 1561 milliseconds