Searched refs:frameRef (Results 1 – 7 of 7) sorted by relevance
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
D | WKBundleFrame.cpp | 44 bool WKBundleFrameIsMainFrame(WKBundleFrameRef frameRef) in WKBundleFrameIsMainFrame() argument 46 return toImpl(frameRef)->isMainFrame(); in WKBundleFrameIsMainFrame() 49 WKURLRef WKBundleFrameCopyURL(WKBundleFrameRef frameRef) in WKBundleFrameCopyURL() argument 51 return toCopiedURLAPI(toImpl(frameRef)->url()); in WKBundleFrameCopyURL() 54 WKURLRef WKBundleFrameCopyProvisionalURL(WKBundleFrameRef frameRef) in WKBundleFrameCopyProvisionalURL() argument 56 return toCopiedURLAPI(toImpl(frameRef)->provisionalURL()); in WKBundleFrameCopyProvisionalURL() 59 WKFrameLoadState WKBundleFrameGetFrameLoadState(WKBundleFrameRef frameRef) in WKBundleFrameGetFrameLoadState() argument 61 Frame* coreFrame = toImpl(frameRef)->coreFrame(); in WKBundleFrameGetFrameLoadState() 82 WKArrayRef WKBundleFrameCopyChildFrames(WKBundleFrameRef frameRef) in WKBundleFrameCopyChildFrames() argument 84 return toAPI(toImpl(frameRef)->childFrames().releaseRef()); in WKBundleFrameCopyChildFrames() [all …]
|
D | WKBundle.cpp | 156 int WKBundleNumberOfPages(WKBundleRef bundleRef, WKBundleFrameRef frameRef, double pageWidthInPixel… in WKBundleNumberOfPages() argument 158 … return toImpl(bundleRef)->numberOfPages(toImpl(frameRef), pageWidthInPixels, pageHeightInPixels); in WKBundleNumberOfPages() 161 int WKBundlePageNumberForElementById(WKBundleRef bundleRef, WKBundleFrameRef frameRef, WKStringRef … in WKBundlePageNumberForElementById() argument 163 …return toImpl(bundleRef)->pageNumberForElementById(toImpl(frameRef), toImpl(idRef)->string(), page… in WKBundlePageNumberForElementById() 166 WKStringRef WKBundlePageSizeAndMarginsInPixels(WKBundleRef bundleRef, WKBundleFrameRef frameRef, in… in WKBundlePageSizeAndMarginsInPixels() argument 168 …return toCopiedAPI(toImpl(bundleRef)->pageSizeAndMarginsInPixels(toImpl(frameRef), pageIndex, widt… in WKBundlePageSizeAndMarginsInPixels() 171 WK_EXPORT bool WKBundleIsPageBoxVisible(WKBundleRef bundleRef, WKBundleFrameRef frameRef, int pageI… in WKBundleIsPageBoxVisible() argument 173 return toImpl(bundleRef)->isPageBoxVisible(toImpl(frameRef), pageIndex); in WKBundleIsPageBoxVisible()
|
D | WKBundlePrivate.h | 72 WK_EXPORT int WKBundleNumberOfPages(WKBundleRef bundle, WKBundleFrameRef frameRef, double pageWidth… 73 WK_EXPORT int WKBundlePageNumberForElementById(WKBundleRef bundle, WKBundleFrameRef frameRef, WKStr… 74 …WKBundlePageSizeAndMarginsInPixels(WKBundleRef bundle, WKBundleFrameRef frameRef, int, int, int, i… 75 WK_EXPORT bool WKBundleIsPageBoxVisible(WKBundleRef bundle, WKBundleFrameRef frameRef, int);
|
/external/webkit/Source/WebKit2/UIProcess/API/C/ |
D | WKFrame.cpp | 43 bool WKFrameIsMainFrame(WKFrameRef frameRef) in WKFrameIsMainFrame() argument 45 return toImpl(frameRef)->isMainFrame(); in WKFrameIsMainFrame() 48 WKFrameLoadState WKFrameGetFrameLoadState(WKFrameRef frameRef) in WKFrameGetFrameLoadState() argument 50 WebFrameProxy* frame = toImpl(frameRef); in WKFrameGetFrameLoadState() 64 WKURLRef WKFrameCopyProvisionalURL(WKFrameRef frameRef) in WKFrameCopyProvisionalURL() argument 66 return toCopiedURLAPI(toImpl(frameRef)->provisionalURL()); in WKFrameCopyProvisionalURL() 69 WKURLRef WKFrameCopyURL(WKFrameRef frameRef) in WKFrameCopyURL() argument 71 return toCopiedURLAPI(toImpl(frameRef)->url()); in WKFrameCopyURL() 74 WKURLRef WKFrameCopyUnreachableURL(WKFrameRef frameRef) in WKFrameCopyUnreachableURL() argument 76 return toCopiedURLAPI(toImpl(frameRef)->unreachableURL()); in WKFrameCopyUnreachableURL() [all …]
|
D | WKPage.cpp | 438 void WKPageGetSourceForFrame(WKPageRef pageRef, WKFrameRef frameRef, void* context, WKPageGetSource… in WKPageGetSourceForFrame() argument 440 toImpl(pageRef)->getSourceForFrame(toImpl(frameRef), StringCallback::create(context, callback)); in WKPageGetSourceForFrame() 451 void WKPageGetSourceForFrame_b(WKPageRef pageRef, WKFrameRef frameRef, WKPageGetSourceForFrameBlock… in WKPageGetSourceForFrame_b() argument 453 …WKPageGetSourceForFrame(pageRef, frameRef, Block_copy(block), callGetSourceForFrameBlockBlockAndDi… in WKPageGetSourceForFrame_b()
|
/external/webkit/Source/WebKit2/UIProcess/API/mac/ |
D | WKView.h | 40 …rintOperation *)printOperationWithPrintInfo:(NSPrintInfo *)printInfo forFrame:(WKFrameRef)frameRef; 41 - (BOOL)canChangeFrameLayout:(WKFrameRef)frameRef;
|
D | WKView.mm | 1908 - (BOOL)canChangeFrameLayout:(WKFrameRef)frameRef 1911 return !toImpl(frameRef)->isMainFrame() || !_data->_pdfViewController; 1914 …PrintOperation *)printOperationWithPrintInfo:(NSPrintInfo *)printInfo forFrame:(WKFrameRef)frameRef 1916 LOG(View, "Creating an NSPrintOperation for frame '%s'", toImpl(frameRef)->url().utf8().data()); 1920 if (!toImpl(frameRef)->isMainFrame()) 1924 …iew> printingView(AdoptNS, [[WKPrintingView alloc] initWithFrameProxy:toImpl(frameRef) view:self]); 1928 [printOperation setJobTitle:toImpl(frameRef)->title()];
|