this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Build WebKit stubs

This is temporary until we build actual WebKit

+17668 -1
+3 -1
src/CMakeLists.txt
··· 192 192 ${CMAKE_CURRENT_SOURCE_DIR}/Contacts/include 193 193 ${CMAKE_CURRENT_SOURCE_DIR}/QuickLook/include 194 194 ${CMAKE_CURRENT_SOURCE_DIR}/ViewBridge/include 195 + ${CMAKE_CURRENT_SOURCE_DIR}/WebKit/include 195 196 ) 196 - 197 197 198 198 add_subdirectory(external/libkqueue) 199 199 ··· 368 368 add_subdirectory(Contacts) 369 369 add_subdirectory(QuickLook) 370 370 add_subdirectory(ViewBridge) 371 + # Just a stub 372 + add_subdirectory(WebKit) 371 373 372 374 # /Applications 373 375 #add_subdirectory(external/TextEdit)
+153
src/WebKit/CMakeLists.txt
··· 1 + project(WebKit) 2 + 3 + set(DYLIB_COMPAT_VERSION "1.0.0") 4 + set(DYLIB_CURRENT_VERSION "605.1.33") 5 + 6 + add_framework(WebKit 7 + FAT 8 + CURRENT_VERSION 9 + VERSION "A" 10 + 11 + SOURCES 12 + src/WebKit.m 13 + src/_WKActivatedElementInfo.m 14 + src/_WKApplicationManifest.m 15 + src/_WKAttachmentDisplayOptions.m 16 + src/_WKAttachment.m 17 + src/_WKAutomationSession.m 18 + src/_WKAutomationSessionConfiguration.m 19 + src/_WKContextMenuElementInfo.m 20 + src/_WKDownload.m 21 + src/_WKExperimentalFeature.m 22 + src/_WKFrameHandle.m 23 + src/_WKHitTestResult.m 24 + src/_WKLinkIconParameters.m 25 + src/_WKProcessPoolConfiguration.m 26 + src/_WKRemoteObjectInterface.m 27 + src/_WKRemoteObjectRegistry.m 28 + src/_WKRemoteWebInspectorViewController.m 29 + src/_WKSessionState.m 30 + src/_WKThumbnailView.m 31 + src/_WKUserContentExtensionStore.m 32 + src/_WKUserContentFilter.m 33 + src/_WKUserContentWorld.m 34 + src/_WKUserInitiatedAction.m 35 + src/_WKUserStyleSheet.m 36 + src/_WKVisitedLinkStore.m 37 + src/_WKWebsiteDataSize.m 38 + src/_WKWebsiteDataStore.m 39 + src/_WKWebsiteDataStoreConfiguration.m 40 + src/_WKWebsitePolicies.m 41 + src/WKCustomProtocolLoader.m 42 + src/WKCustomProtocol.m 43 + src/WKNetworkSessionDelegate.m 44 + src/WKPDFPluginAccessibilityObject.m 45 + src/WKPDFPluginScrollbarLayer.m 46 + src/WKPDFLayerControllerDelegate.m 47 + src/WKAnimationDelegate.m 48 + src/WKPlaceholderModalWindow.m 49 + src/WKRemoteWebInspectorProxyObjCAdapter.m 50 + src/WKLayerHostView.m 51 + src/WKSwipeCancellationTracker.m 52 + src/WKUserDataWrapper.m 53 + src/WKSelectionHandlerWrapper.m 54 + src/WKMenuTarget.m 55 + src/WKWebInspectorProxyObjCAdapter.m 56 + src/WKPaymentAuthorizationViewControllerDelegate.m 57 + src/WKAccessibilitySettingsObserver.m 58 + src/WKWindowVisibilityObserver.m 59 + src/WKEditCommandObjC.m 60 + src/WKEditorUndoTargetObjC.m 61 + src/WKFlippedView.m 62 + src/WKResponderChainSink.m 63 + src/WKTextListTouchBarViewController.m 64 + src/WKTextTouchBarItemController.m 65 + src/WKAccessibilityWebPageObjectBase.m 66 + src/WKAccessibilityWebPageObject.m 67 + src/WKBackForwardList.m 68 + src/WKBackForwardListItem.m 69 + src/WKBrowsingContextController.m 70 + src/WKBrowsingContextGroup.m 71 + src/WKBrowsingContextHandle.m 72 + src/WKConnection.m 73 + src/WKContentRuleList.m 74 + src/WKContentRuleListStore.m 75 + src/WKDOMDocument.m 76 + src/WKDOMElement.m 77 + src/WKDOMNode.m 78 + src/WKDOMRange.m 79 + src/WKDOMText.m 80 + src/WKDOMTextIterator.m 81 + src/WKFrameInfo.m 82 + src/WKFullKeyboardAccessWatcher.m 83 + src/WKFullScreenWindowController.m 84 + src/WKHTTPCookieStore.m 85 + src/WKAnimationController.m 86 + src/WKImmediateActionController.m 87 + src/WKInspectorViewController.m 88 + src/WKInspectorWKWebView.m 89 + src/WKNavigation.m 90 + src/WKNavigationAction.m 91 + src/WKNavigationData.m 92 + src/WKNavigationResponse.m 93 + src/WKNSArray.m 94 + src/WKNSData.m 95 + src/WKNSDictionary.m 96 + src/WKNSError.m 97 + src/WKNSNumber.m 98 + src/WKNSString.m 99 + src/WKNSURL.m 100 + src/WKNSURLAuthenticationChallenge.m 101 + src/WKNSURLAuthenticationChallengeSender.m 102 + src/WKNSURLRequest.m 103 + src/WKObject.m 104 + src/WKOpenPanelParameters.m 105 + src/WKObservablePageState.m 106 + src/WKPreferences.m 107 + src/WKPrintingView.m 108 + src/WKProcessGroup.m 109 + src/WKProcessPool.m 110 + src/WKReloadFrameErrorRecoveryAttempter.m 111 + src/WKRemoteObject.m 112 + src/WKRemoteObjectEncoder.m 113 + src/WKRemoteObjectDecoder.m 114 + src/WKScriptMessage.m 115 + src/WKSecurityOrigin.m 116 + src/WKSharingServicePickerDelegate.m 117 + src/WKSnapshotConfiguration.m 118 + src/WKTextFinderMatch.m 119 + src/WKTextFinderClient.m 120 + src/WKTextInputView.m 121 + src/WKTextInputPanel.m 122 + src/WKTextInputWindowController.m 123 + src/WKTypeRefWrapper.m 124 + src/WKURLSchemeTaskImpl.m 125 + src/WKUserContentController.m 126 + src/WKUserScript.m 127 + src/WKViewData.m 128 + src/WKView.m 129 + src/WKViewLayoutStrategy.m 130 + src/WKViewViewSizeLayoutStrategy.m 131 + src/WKViewFixedSizeLayoutStrategy.m 132 + src/WKViewDynamicSizeComputedFromViewScaleLayoutStrategy.m 133 + src/WKViewDynamicSizeComputedFromMinimumDocumentSizeLayoutStrategy.m 134 + src/WKWebProcessBundleParameters.m 135 + src/WKWebProcessPlugInController.m 136 + src/WKWebProcessPlugInBrowserContextController.m 137 + src/WKWebProcessPlugInFrame.m 138 + src/WKWebProcessPlugInHitTestResult.m 139 + src/WKWebProcessPlugInNodeHandle.m 140 + src/WKWebProcessPlugInPageGroup.m 141 + src/WKWebProcessPlugInRangeHandle.m 142 + src/WKWebProcessPlugInScriptWorld.m 143 + src/WKWebsiteDataRecord.m 144 + src/WKWebsiteDataStore.m 145 + src/WKWebView.m 146 + src/WKWebViewConfiguration.m 147 + src/WKWindowFeatures.m 148 + 149 + DEPENDENCIES 150 + system 151 + objc 152 + Foundation 153 + )
+24
src/WebKit/include/WebKit/CAAnimationDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol CAAnimationDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSCandidateListTouchBarItemDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSCandidateListTouchBarItemDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSGestureRecognizerDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSGestureRecognizerDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSImmediateActionAnimationController.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSImmediateActionAnimationController 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSImmediateActionGestureRecognizerDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSImmediateActionGestureRecognizerDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSSharingServiceDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSSharingServiceDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSSharingServicePickerDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSSharingServicePickerDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSTextFinderAsynchronousDocumentFindMatch.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSTextFinderAsynchronousDocumentFindMatch 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSTextInputClient.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSTextInputClient 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSTouchBarDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSTouchBarDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSTouchBarProvider.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSTouchBarProvider 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSURLAuthenticationChallengeSender.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSURLAuthenticationChallengeSender 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSURLConnectionDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSURLConnectionDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSURLSessionDataDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSURLSessionDataDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSURLSessionDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSURLSessionDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSURLSessionTaskDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSURLSessionTaskDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSUserInterfaceValidations.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSUserInterfaceValidations 23 + 24 + @end
+24
src/WebKit/include/WebKit/NSWindowDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSWindowDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/PDFLayerControllerDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol PDFLayerControllerDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/PKPaymentAuthorizationViewControllerDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol PKPaymentAuthorizationViewControllerDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/PKPaymentAuthorizationViewControllerPrivateDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol PKPaymentAuthorizationViewControllerPrivateDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/QLPreviewMenuItemDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol QLPreviewMenuItemDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKAccessibilitySettingsObserver.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKAccessibilitySettingsObserver : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKAccessibilityWebPageObject.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKAccessibilityWebPageObject : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKAccessibilityWebPageObjectBase.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKAccessibilityWebPageObjectBase : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKAnimationController.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKAnimationController : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKAnimationDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKAnimationDelegate : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKBackForwardList.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKBackForwardList : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKBackForwardListItem.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKBackForwardListItem : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKBrowsingContextController.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKBrowsingContextController : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKBrowsingContextGroup.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKBrowsingContextGroup : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKBrowsingContextHandle.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKBrowsingContextHandle : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKConnection.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKConnection : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKContentRuleList.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKContentRuleList : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKContentRuleListStore.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKContentRuleListStore : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKCustomProtocol.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKCustomProtocol : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKCustomProtocolLoader.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKCustomProtocolLoader : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKDOMDocument.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKDOMDocument : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKDOMElement.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKDOMElement : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKDOMNode.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKDOMNode : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKDOMRange.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKDOMRange : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKDOMText.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKDOMText : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKDOMTextIterator.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKDOMTextIterator : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKEditCommandObjC.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKEditCommandObjC : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKEditorUndoTargetObjC.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKEditorUndoTargetObjC : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKFlippedView.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKFlippedView : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKFrameInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKFrameInfo : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKFullKeyboardAccessWatcher.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKFullKeyboardAccessWatcher : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKFullScreenWindowController.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKFullScreenWindowController : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKHTTPCookieStore.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKHTTPCookieStore : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKImmediateActionController.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKImmediateActionController : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKInspectorViewController.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKInspectorViewController : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKInspectorViewControllerDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol WKInspectorViewControllerDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKInspectorWKWebView.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKInspectorWKWebView : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKInspectorWKWebViewDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol WKInspectorWKWebViewDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKLayerHostView.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKLayerHostView : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKMenuTarget.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKMenuTarget : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNSArray.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNSArray : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNSData.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNSData : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNSDictionary.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNSDictionary : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNSError.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNSError : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNSNumber.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNSNumber : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNSString.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNSString : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNSURL.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNSURL : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNSURLAuthenticationChallenge.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNSURLAuthenticationChallenge : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNSURLAuthenticationChallengeSender.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNSURLAuthenticationChallengeSender : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNSURLRequest.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNSURLRequest : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNavigation.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNavigation : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNavigationAction.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNavigationAction : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNavigationData.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNavigationData : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNavigationDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol WKNavigationDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNavigationResponse.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNavigationResponse : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKNetworkSessionDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKNetworkSessionDelegate : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKObject.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKObject : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKObservablePageState.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKObservablePageState : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKOpenPanelParameters.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKOpenPanelParameters : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKPDFLayerControllerDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKPDFLayerControllerDelegate : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKPDFPluginAccessibilityObject.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKPDFPluginAccessibilityObject : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKPDFPluginScrollbarLayer.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKPDFPluginScrollbarLayer : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKPaymentAuthorizationViewControllerDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKPaymentAuthorizationViewControllerDelegate : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKPlaceholderModalWindow.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKPlaceholderModalWindow : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKPreferences.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKPreferences : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKPrintingView.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKPrintingView : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKProcessGroup.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKProcessGroup : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKProcessPool.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKProcessPool : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKReloadFrameErrorRecoveryAttempter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKReloadFrameErrorRecoveryAttempter : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKRemoteObject.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKRemoteObject : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKRemoteObjectDecoder.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKRemoteObjectDecoder : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKRemoteObjectEncoder.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKRemoteObjectEncoder : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKRemoteWebInspectorProxyObjCAdapter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKRemoteWebInspectorProxyObjCAdapter : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKResponderChainSink.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKResponderChainSink : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKScriptMessage.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKScriptMessage : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKSecurityOrigin.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKSecurityOrigin : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKSelectionHandlerWrapper.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKSelectionHandlerWrapper : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKSharingServicePickerDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKSharingServicePickerDelegate : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKSnapshotConfiguration.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKSnapshotConfiguration : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKSwipeCancellationTracker.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKSwipeCancellationTracker : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKTextFinderClient.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKTextFinderClient : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKTextFinderMatch.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKTextFinderMatch : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKTextInputPanel.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKTextInputPanel : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKTextInputView.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKTextInputView : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKTextInputWindowController.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKTextInputWindowController : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKTextListTouchBarViewController.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKTextListTouchBarViewController : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKTextTouchBarItemController.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKTextTouchBarItemController : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKTypeRefWrapper.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKTypeRefWrapper : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKUIDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol WKUIDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKURLSchemeTask.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol WKURLSchemeTask 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKURLSchemeTaskImpl.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKURLSchemeTaskImpl : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKURLSchemeTaskPrivate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol WKURLSchemeTaskPrivate 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKUserContentController.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKUserContentController : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKUserDataWrapper.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKUserDataWrapper : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKUserScript.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKUserScript : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKView.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKView : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKViewData.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKViewData : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKViewDynamicSizeComputedFromMinimumDocumentSizeLayoutStrategy.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKViewDynamicSizeComputedFromMinimumDocumentSizeLayoutStrategy : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKViewDynamicSizeComputedFromViewScaleLayoutStrategy.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKViewDynamicSizeComputedFromViewScaleLayoutStrategy : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKViewFixedSizeLayoutStrategy.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKViewFixedSizeLayoutStrategy : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKViewLayoutStrategy.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKViewLayoutStrategy : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKViewViewSizeLayoutStrategy.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKViewViewSizeLayoutStrategy : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebInspectorProxyObjCAdapter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWebInspectorProxyObjCAdapter : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebProcessBundleParameters.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWebProcessBundleParameters : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebProcessPlugIn.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol WKWebProcessPlugIn 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebProcessPlugInBrowserContextController.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWebProcessPlugInBrowserContextController : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebProcessPlugInController.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWebProcessPlugInController : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebProcessPlugInFrame.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWebProcessPlugInFrame : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebProcessPlugInHitTestResult.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWebProcessPlugInHitTestResult : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebProcessPlugInNodeHandle.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWebProcessPlugInNodeHandle : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebProcessPlugInPageGroup.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWebProcessPlugInPageGroup : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebProcessPlugInRangeHandle.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWebProcessPlugInRangeHandle : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebProcessPlugInScriptWorld.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWebProcessPlugInScriptWorld : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebView.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWebView : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebViewConfiguration.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWebViewConfiguration : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebsiteDataRecord.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWebsiteDataRecord : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWebsiteDataStore.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWebsiteDataStore : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWindowFeatures.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWindowFeatures : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/WKWindowVisibilityObserver.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface WKWindowVisibilityObserver : NSObject 23 + 24 + @end
+1689
src/WebKit/include/WebKit/WebKit.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + 21 + #ifndef _WebKit_H_ 22 + #define _WebKit_H_ 23 + 24 + #import <Foundation/Foundation.h> 25 + 26 + #import <WebKit/CAAnimationDelegate.h> 27 + #import <WebKit/NSCandidateListTouchBarItemDelegate.h> 28 + #import <WebKit/NSGestureRecognizerDelegate.h> 29 + #import <WebKit/NSImmediateActionAnimationController.h> 30 + #import <WebKit/NSImmediateActionGestureRecognizerDelegate.h> 31 + #import <WebKit/NSSharingServiceDelegate.h> 32 + #import <WebKit/NSSharingServicePickerDelegate.h> 33 + #import <WebKit/NSTextFinderAsynchronousDocumentFindMatch.h> 34 + #import <WebKit/NSTextInputClient.h> 35 + #import <WebKit/NSTouchBarDelegate.h> 36 + #import <WebKit/NSTouchBarProvider.h> 37 + #import <WebKit/NSURLAuthenticationChallengeSender.h> 38 + #import <WebKit/NSURLConnectionDelegate.h> 39 + #import <WebKit/NSURLSessionDataDelegate.h> 40 + #import <WebKit/NSURLSessionDelegate.h> 41 + #import <WebKit/NSURLSessionTaskDelegate.h> 42 + #import <WebKit/NSUserInterfaceValidations.h> 43 + #import <WebKit/NSWindowDelegate.h> 44 + #import <WebKit/PDFLayerControllerDelegate.h> 45 + #import <WebKit/PKPaymentAuthorizationViewControllerDelegate.h> 46 + #import <WebKit/PKPaymentAuthorizationViewControllerPrivateDelegate.h> 47 + #import <WebKit/QLPreviewMenuItemDelegate.h> 48 + #import <WebKit/WKInspectorViewControllerDelegate.h> 49 + #import <WebKit/WKInspectorWKWebViewDelegate.h> 50 + #import <WebKit/WKNavigationDelegate.h> 51 + #import <WebKit/WKObject.h> 52 + #import <WebKit/WKUIDelegate.h> 53 + #import <WebKit/WKURLSchemeTask.h> 54 + #import <WebKit/WKURLSchemeTaskPrivate.h> 55 + #import <WebKit/WKWebProcessPlugIn.h> 56 + #import <WebKit/WebViewImplDelegate.h> 57 + #import <WebKit/_WKErrorRecoveryAttempting.h> 58 + #import <WebKit/_WKObservablePageState.h> 59 + #import <WebKit/_WKActivatedElementInfo.h> 60 + #import <WebKit/_WKApplicationManifest.h> 61 + #import <WebKit/_WKAttachmentDisplayOptions.h> 62 + #import <WebKit/_WKAttachment.h> 63 + #import <WebKit/_WKAutomationSession.h> 64 + #import <WebKit/_WKAutomationSessionConfiguration.h> 65 + #import <WebKit/_WKContextMenuElementInfo.h> 66 + #import <WebKit/_WKDownload.h> 67 + #import <WebKit/_WKExperimentalFeature.h> 68 + #import <WebKit/_WKFrameHandle.h> 69 + #import <WebKit/_WKHitTestResult.h> 70 + #import <WebKit/_WKLinkIconParameters.h> 71 + #import <WebKit/_WKProcessPoolConfiguration.h> 72 + #import <WebKit/_WKRemoteObjectInterface.h> 73 + #import <WebKit/_WKRemoteObjectRegistry.h> 74 + #import <WebKit/_WKRemoteWebInspectorViewController.h> 75 + #import <WebKit/_WKSessionState.h> 76 + #import <WebKit/_WKThumbnailView.h> 77 + #import <WebKit/_WKUserContentExtensionStore.h> 78 + #import <WebKit/_WKUserContentFilter.h> 79 + #import <WebKit/_WKUserContentWorld.h> 80 + #import <WebKit/_WKUserInitiatedAction.h> 81 + #import <WebKit/_WKUserStyleSheet.h> 82 + #import <WebKit/_WKVisitedLinkStore.h> 83 + #import <WebKit/_WKWebsiteDataSize.h> 84 + #import <WebKit/_WKWebsiteDataStore.h> 85 + #import <WebKit/_WKWebsiteDataStoreConfiguration.h> 86 + #import <WebKit/_WKWebsitePolicies.h> 87 + #import <WebKit/WKCustomProtocolLoader.h> 88 + #import <WebKit/WKCustomProtocol.h> 89 + #import <WebKit/WKNetworkSessionDelegate.h> 90 + #import <WebKit/WKPDFPluginAccessibilityObject.h> 91 + #import <WebKit/WKPDFPluginScrollbarLayer.h> 92 + #import <WebKit/WKPDFLayerControllerDelegate.h> 93 + #import <WebKit/WKAnimationDelegate.h> 94 + #import <WebKit/WKPlaceholderModalWindow.h> 95 + #import <WebKit/WKRemoteWebInspectorProxyObjCAdapter.h> 96 + #import <WebKit/WKLayerHostView.h> 97 + #import <WebKit/WKSwipeCancellationTracker.h> 98 + #import <WebKit/WKUserDataWrapper.h> 99 + #import <WebKit/WKSelectionHandlerWrapper.h> 100 + #import <WebKit/WKMenuTarget.h> 101 + #import <WebKit/WKWebInspectorProxyObjCAdapter.h> 102 + #import <WebKit/WKPaymentAuthorizationViewControllerDelegate.h> 103 + #import <WebKit/WKAccessibilitySettingsObserver.h> 104 + #import <WebKit/WKWindowVisibilityObserver.h> 105 + #import <WebKit/WKEditCommandObjC.h> 106 + #import <WebKit/WKEditorUndoTargetObjC.h> 107 + #import <WebKit/WKFlippedView.h> 108 + #import <WebKit/WKResponderChainSink.h> 109 + #import <WebKit/WKTextListTouchBarViewController.h> 110 + #import <WebKit/WKTextTouchBarItemController.h> 111 + #import <WebKit/WKAccessibilityWebPageObjectBase.h> 112 + #import <WebKit/WKAccessibilityWebPageObject.h> 113 + #import <WebKit/WKBackForwardList.h> 114 + #import <WebKit/WKBackForwardListItem.h> 115 + #import <WebKit/WKBrowsingContextController.h> 116 + #import <WebKit/WKBrowsingContextGroup.h> 117 + #import <WebKit/WKBrowsingContextHandle.h> 118 + #import <WebKit/WKConnection.h> 119 + #import <WebKit/WKContentRuleList.h> 120 + #import <WebKit/WKContentRuleListStore.h> 121 + #import <WebKit/WKDOMDocument.h> 122 + #import <WebKit/WKDOMElement.h> 123 + #import <WebKit/WKDOMNode.h> 124 + #import <WebKit/WKDOMRange.h> 125 + #import <WebKit/WKDOMText.h> 126 + #import <WebKit/WKDOMTextIterator.h> 127 + #import <WebKit/WKFrameInfo.h> 128 + #import <WebKit/WKFullKeyboardAccessWatcher.h> 129 + #import <WebKit/WKFullScreenWindowController.h> 130 + #import <WebKit/WKHTTPCookieStore.h> 131 + #import <WebKit/WKAnimationController.h> 132 + #import <WebKit/WKImmediateActionController.h> 133 + #import <WebKit/WKInspectorViewController.h> 134 + #import <WebKit/WKInspectorWKWebView.h> 135 + #import <WebKit/WKNavigation.h> 136 + #import <WebKit/WKNavigationAction.h> 137 + #import <WebKit/WKNavigationData.h> 138 + #import <WebKit/WKNavigationResponse.h> 139 + #import <WebKit/WKNSArray.h> 140 + #import <WebKit/WKNSData.h> 141 + #import <WebKit/WKNSDictionary.h> 142 + #import <WebKit/WKNSError.h> 143 + #import <WebKit/WKNSNumber.h> 144 + #import <WebKit/WKNSString.h> 145 + #import <WebKit/WKNSURL.h> 146 + #import <WebKit/WKNSURLAuthenticationChallenge.h> 147 + #import <WebKit/WKNSURLAuthenticationChallengeSender.h> 148 + #import <WebKit/WKNSURLRequest.h> 149 + #import <WebKit/WKObject.h> 150 + #import <WebKit/WKOpenPanelParameters.h> 151 + #import <WebKit/WKObservablePageState.h> 152 + #import <WebKit/WKPreferences.h> 153 + #import <WebKit/WKPrintingView.h> 154 + #import <WebKit/WKProcessGroup.h> 155 + #import <WebKit/WKProcessPool.h> 156 + #import <WebKit/WKReloadFrameErrorRecoveryAttempter.h> 157 + #import <WebKit/WKRemoteObject.h> 158 + #import <WebKit/WKRemoteObjectEncoder.h> 159 + #import <WebKit/WKRemoteObjectDecoder.h> 160 + #import <WebKit/WKScriptMessage.h> 161 + #import <WebKit/WKSecurityOrigin.h> 162 + #import <WebKit/WKSharingServicePickerDelegate.h> 163 + #import <WebKit/WKSnapshotConfiguration.h> 164 + #import <WebKit/WKTextFinderMatch.h> 165 + #import <WebKit/WKTextFinderClient.h> 166 + #import <WebKit/WKTextInputView.h> 167 + #import <WebKit/WKTextInputPanel.h> 168 + #import <WebKit/WKTextInputWindowController.h> 169 + #import <WebKit/WKTypeRefWrapper.h> 170 + #import <WebKit/WKURLSchemeTaskImpl.h> 171 + #import <WebKit/WKUserContentController.h> 172 + #import <WebKit/WKUserScript.h> 173 + #import <WebKit/WKViewData.h> 174 + #import <WebKit/WKView.h> 175 + #import <WebKit/WKViewLayoutStrategy.h> 176 + #import <WebKit/WKViewViewSizeLayoutStrategy.h> 177 + #import <WebKit/WKViewFixedSizeLayoutStrategy.h> 178 + #import <WebKit/WKViewDynamicSizeComputedFromViewScaleLayoutStrategy.h> 179 + #import <WebKit/WKViewDynamicSizeComputedFromMinimumDocumentSizeLayoutStrategy.h> 180 + #import <WebKit/WKWebProcessBundleParameters.h> 181 + #import <WebKit/WKWebProcessPlugInController.h> 182 + #import <WebKit/WKWebProcessPlugInBrowserContextController.h> 183 + #import <WebKit/WKWebProcessPlugInFrame.h> 184 + #import <WebKit/WKWebProcessPlugInHitTestResult.h> 185 + #import <WebKit/WKWebProcessPlugInNodeHandle.h> 186 + #import <WebKit/WKWebProcessPlugInPageGroup.h> 187 + #import <WebKit/WKWebProcessPlugInRangeHandle.h> 188 + #import <WebKit/WKWebProcessPlugInScriptWorld.h> 189 + #import <WebKit/WKWebsiteDataRecord.h> 190 + #import <WebKit/WKWebsiteDataStore.h> 191 + #import <WebKit/WKWebView.h> 192 + #import <WebKit/WKWebViewConfiguration.h> 193 + #import <WebKit/WKWindowFeatures.h> 194 + 195 + void* DatabaseServiceInitializer(void); 196 + void* NetworkServiceInitializer(void); 197 + void* PluginServiceInitializer(void); 198 + void* WKAccessibilityEnableEnhancedAccessibility(void); 199 + void* WKAccessibilityEnhancedAccessibilityEnabled(void); 200 + void* WKAccessibilityFocusedObject(void); 201 + void* WKAccessibilityRootObject(void); 202 + void* WKApplicationCacheManagerDeleteAllEntries(void); 203 + void* WKApplicationCacheManagerDeleteEntriesForOrigin(void); 204 + void* WKApplicationCacheManagerGetApplicationCacheOrigins(void); 205 + void* WKApplicationCacheManagerGetTypeID(void); 206 + void* WKArrayAppendItem(void); 207 + void* WKArrayCreate(void); 208 + void* WKArrayCreateAdoptingValues(void); 209 + void* WKArrayGetItemAtIndex(void); 210 + void* WKArrayGetSize(void); 211 + void* WKArrayGetTypeID(void); 212 + void* WKArrayRemoveItemAtIndex(void); 213 + void* WKAuthenticationChallengeGetDecisionListener(void); 214 + void* WKAuthenticationChallengeGetPreviousFailureCount(void); 215 + void* WKAuthenticationChallengeGetProposedCredential(void); 216 + void* WKAuthenticationChallengeGetProtectionSpace(void); 217 + void* WKAuthenticationChallengeGetTypeID(void); 218 + void* WKAuthenticationDecisionListenerCancel(void); 219 + void* WKAuthenticationDecisionListenerGetTypeID(void); 220 + void* WKAuthenticationDecisionListenerRejectProtectionSpaceAndContinue(void); 221 + void* WKAuthenticationDecisionListenerUseCredential(void); 222 + void* WKBackForwardListClear(void); 223 + void* WKBackForwardListCopyBackListWithLimit(void); 224 + void* WKBackForwardListCopyForwardListWithLimit(void); 225 + void* WKBackForwardListGetBackItem(void); 226 + void* WKBackForwardListGetBackListCount(void); 227 + void* WKBackForwardListGetCurrentItem(void); 228 + void* WKBackForwardListGetForwardItem(void); 229 + void* WKBackForwardListGetForwardListCount(void); 230 + void* WKBackForwardListGetItemAtIndex(void); 231 + void* WKBackForwardListGetTypeID(void); 232 + void* WKBackForwardListItemCopyOriginalURL(void); 233 + void* WKBackForwardListItemCopyTitle(void); 234 + void* WKBackForwardListItemCopyURL(void); 235 + void* WKBackForwardListItemGetTypeID(void); 236 + void* WKBooleanCreate(void); 237 + void* WKBooleanGetTypeID(void); 238 + void* WKBooleanGetValue(void); 239 + void* WKBundleAddOriginAccessWhitelistEntry(void); 240 + void* WKBundleAddUserScript(void); 241 + void* WKBundleAddUserStyleSheet(void); 242 + void* WKBundleBackForwardListClear(void); 243 + void* WKBundleBackForwardListCopyItemAtIndex(void); 244 + void* WKBundleBackForwardListGetBackListCount(void); 245 + void* WKBundleBackForwardListGetForwardListCount(void); 246 + void* WKBundleBackForwardListGetTypeID(void); 247 + void* WKBundleBackForwardListItemCopyChildren(void); 248 + void* WKBundleBackForwardListItemCopyOriginalURL(void); 249 + void* WKBundleBackForwardListItemCopyTarget(void); 250 + void* WKBundleBackForwardListItemCopyTitle(void); 251 + void* WKBundleBackForwardListItemCopyURL(void); 252 + void* WKBundleBackForwardListItemGetTypeID(void); 253 + void* WKBundleBackForwardListItemHasCachedPageExpired(void); 254 + void* WKBundleBackForwardListItemIsInPageCache(void); 255 + void* WKBundleBackForwardListItemIsSame(void); 256 + void* WKBundleBackForwardListItemIsTargetItem(void); 257 + void* WKBundleClearAllDatabases(void); 258 + void* WKBundleClearResourceLoadStatistics(void); 259 + void* WKBundleCreateWKDataFromUInt8Array(void); 260 + void* WKBundleDOMWindowExtensionCreate(void); 261 + void* WKBundleDOMWindowExtensionGetFrame(void); 262 + void* WKBundleDOMWindowExtensionGetScriptWorld(void); 263 + void* WKBundleDOMWindowExtensionGetTypeID(void); 264 + void* WKBundleFileHandleCreateWithPath(void); 265 + void* WKBundleFileHandleGetTypeID(void); 266 + void* WKBundleFrameAllowsFollowingLink(void); 267 + void* WKBundleFrameCallShouldCloseOnWebView(void); 268 + void* WKBundleFrameClearOpener(void); 269 + void* WKBundleFrameContainsAnyFormControls(void); 270 + void* WKBundleFrameContainsAnyFormElements(void); 271 + void* WKBundleFrameCopyChildFrames(void); 272 + void* WKBundleFrameCopyCounterValue(void); 273 + void* WKBundleFrameCopyInnerText(void); 274 + void* WKBundleFrameCopyLayerTreeAsText(void); 275 + void* WKBundleFrameCopyMIMETypeForResourceWithURL(void); 276 + void* WKBundleFrameCopyName(void); 277 + void* WKBundleFrameCopyProvisionalURL(void); 278 + void* WKBundleFrameCopySecurityOrigin(void); 279 + void* WKBundleFrameCopySuggestedFilenameForResourceWithURL(void); 280 + void* WKBundleFrameCopyURL(void); 281 + void* WKBundleFrameCopyWebArchive(void); 282 + void* WKBundleFrameCopyWebArchiveFilteringSubframes(void); 283 + void* WKBundleFrameCreateFrameHandle(void); 284 + void* WKBundleFrameCreateHitTestResult(void); 285 + void* WKBundleFrameFocus(void); 286 + void* WKBundleFrameForJavaScriptContext(void); 287 + void* WKBundleFrameGetContentBounds(void); 288 + void* WKBundleFrameGetDocumentBackgroundColor(void); 289 + void* WKBundleFrameGetFrameLoadState(void); 290 + void* WKBundleFrameGetJavaScriptContext(void); 291 + void* WKBundleFrameGetJavaScriptContextForWorld(void); 292 + void* WKBundleFrameGetJavaScriptWrapperForFileForWorld(void); 293 + void* WKBundleFrameGetJavaScriptWrapperForNodeForWorld(void); 294 + void* WKBundleFrameGetJavaScriptWrapperForRangeForWorld(void); 295 + void* WKBundleFrameGetPage(void); 296 + void* WKBundleFrameGetParentFrame(void); 297 + void* WKBundleFrameGetPendingUnloadCount(void); 298 + void* WKBundleFrameGetScrollOffset(void); 299 + void* WKBundleFrameGetTypeID(void); 300 + void* WKBundleFrameGetVisibleContentBounds(void); 301 + void* WKBundleFrameGetVisibleContentBoundsExcludingScrollbars(void); 302 + void* WKBundleFrameHandlesPageScaleGesture(void); 303 + void* WKBundleFrameHasHorizontalScrollbar(void); 304 + void* WKBundleFrameHasVerticalScrollbar(void); 305 + void* WKBundleFrameIsMainFrame(void); 306 + void* WKBundleFrameSetAccessibleName(void); 307 + void* WKBundleFrameSetTextDirection(void); 308 + void* WKBundleFrameStopLoading(void); 309 + void* WKBundleGarbageCollectJavaScriptObjects(void); 310 + void* WKBundleGarbageCollectJavaScriptObjectsOnAlternateThreadForDebugging(void); 311 + void* WKBundleGetApplicationConnection(void); 312 + void* WKBundleGetJavaScriptObjectsCount(void); 313 + void* WKBundleGetParameters(void); 314 + void* WKBundleGetTypeID(void); 315 + void* WKBundleGetWebNotificationID(void); 316 + void* WKBundleHitTestResultCopyAbsoluteImageURL(void); 317 + void* WKBundleHitTestResultCopyAbsoluteLinkURL(void); 318 + void* WKBundleHitTestResultCopyAbsoluteMediaURL(void); 319 + void* WKBundleHitTestResultCopyAbsolutePDFURL(void); 320 + void* WKBundleHitTestResultCopyImage(void); 321 + void* WKBundleHitTestResultCopyLinkLabel(void); 322 + void* WKBundleHitTestResultCopyLinkSuggestedFilename(void); 323 + void* WKBundleHitTestResultCopyLinkTitle(void); 324 + void* WKBundleHitTestResultCopyNodeHandle(void); 325 + void* WKBundleHitTestResultCopyURLElementHandle(void); 326 + void* WKBundleHitTestResultGetFrame(void); 327 + void* WKBundleHitTestResultGetImageRect(void); 328 + void* WKBundleHitTestResultGetIsSelected(void); 329 + void* WKBundleHitTestResultGetMediaType(void); 330 + void* WKBundleHitTestResultGetTargetFrame(void); 331 + void* WKBundleHitTestResultGetTypeID(void); 332 + void* WKBundleHitTestResultIsDownloadableMedia(void); 333 + void* WKBundleHitTestResultMediaHasAudio(void); 334 + void* WKBundleHitTestResultMediaIsInFullscreen(void); 335 + void* WKBundleInspectorClose(void); 336 + void* WKBundleInspectorEvaluateScriptForTest(void); 337 + void* WKBundleInspectorGetTypeID(void); 338 + void* WKBundleInspectorSetPageProfilingEnabled(void); 339 + void* WKBundleInspectorShow(void); 340 + void* WKBundleIsPageBoxVisible(void); 341 + void* WKBundleIsProcessingUserGesture(void); 342 + void* WKBundleNavigationActionCopyDownloadAttribute(void); 343 + void* WKBundleNavigationActionCopyFormElement(void); 344 + void* WKBundleNavigationActionCopyHitTestResult(void); 345 + void* WKBundleNavigationActionGetEventModifiers(void); 346 + void* WKBundleNavigationActionGetEventMouseButton(void); 347 + void* WKBundleNavigationActionGetNavigationType(void); 348 + void* WKBundleNavigationActionGetShouldOpenExternalURLs(void); 349 + void* WKBundleNavigationActionGetShouldTryAppLinks(void); 350 + void* WKBundleNavigationActionGetTypeID(void); 351 + void* WKBundleNodeHandleCopyDocument(void); 352 + void* WKBundleNodeHandleCopyDocumentFrame(void); 353 + void* WKBundleNodeHandleCopyHTMLFrameElementContentFrame(void); 354 + void* WKBundleNodeHandleCopyHTMLIFrameElementContentFrame(void); 355 + void* WKBundleNodeHandleCopyHTMLTableCellElementCellAbove(void); 356 + void* WKBundleNodeHandleCopySnapshotWithOptions(void); 357 + void* WKBundleNodeHandleCopyVisibleRange(void); 358 + void* WKBundleNodeHandleCreate(void); 359 + void* WKBundleNodeHandleGetElementBounds(void); 360 + void* WKBundleNodeHandleGetHTMLInputElementAutoFillAvailable(void); 361 + void* WKBundleNodeHandleGetHTMLInputElementAutoFillButtonBounds(void); 362 + void* WKBundleNodeHandleGetHTMLInputElementAutoFillButtonEnabled(void); 363 + void* WKBundleNodeHandleGetHTMLInputElementAutoFillButtonType(void); 364 + void* WKBundleNodeHandleGetHTMLInputElementAutoFilled(void); 365 + void* WKBundleNodeHandleGetHTMLInputElementAutofilled(void); 366 + void* WKBundleNodeHandleGetHTMLInputElementLastAutoFillButtonType(void); 367 + void* WKBundleNodeHandleGetHTMLInputElementLastChangeWasUserEdit(void); 368 + void* WKBundleNodeHandleGetHTMLTextAreaElementLastChangeWasUserEdit(void); 369 + void* WKBundleNodeHandleGetRenderRect(void); 370 + void* WKBundleNodeHandleGetTypeID(void); 371 + void* WKBundleNodeHandleSetHTMLInputElementAutoFillAvailable(void); 372 + void* WKBundleNodeHandleSetHTMLInputElementAutoFillButtonEnabled(void); 373 + void* WKBundleNodeHandleSetHTMLInputElementAutoFillButtonEnabledWithButtonType(void); 374 + void* WKBundleNodeHandleSetHTMLInputElementAutoFilled(void); 375 + void* WKBundleNodeHandleSetHTMLInputElementAutofilled(void); 376 + void* WKBundleNodeHandleSetHTMLInputElementSpellcheckEnabled(void); 377 + void* WKBundleNodeHandleSetHTMLInputElementValueForUser(void); 378 + void* WKBundleNumberOfPages(void); 379 + void* WKBundleOverrideBoolPreferenceForTestRunner(void); 380 + void* WKBundlePageAddUserScript(void); 381 + void* WKBundlePageAddUserStyleSheet(void); 382 + void* WKBundlePageBannerCreateBannerWithCALayer(void); 383 + void* WKBundlePageBannerGetLayer(void); 384 + void* WKBundlePageBannerGetTypeID(void); 385 + void* WKBundlePageCanHandleRequest(void); 386 + void* WKBundlePageCanShowMIMEType(void); 387 + void* WKBundlePageClearApplicationCache(void); 388 + void* WKBundlePageClearApplicationCacheForOrigin(void); 389 + void* WKBundlePageClearMainFrameName(void); 390 + void* WKBundlePageClickMenuItem(void); 391 + void* WKBundlePageClose(void); 392 + void* WKBundlePageConfirmComposition(void); 393 + void* WKBundlePageConfirmCompositionWithText(void); 394 + void* WKBundlePageCopyContextMenuAtPointInWindow(void); 395 + void* WKBundlePageCopyContextMenuItems(void); 396 + void* WKBundlePageCopyGroupIdentifier(void); 397 + void* WKBundlePageCopyOriginsWithApplicationCache(void); 398 + void* WKBundlePageCopyRenderLayerTree(void); 399 + void* WKBundlePageCopyRenderTree(void); 400 + void* WKBundlePageCopyRenderTreeExternalRepresentation(void); 401 + void* WKBundlePageCopyRenderTreeExternalRepresentationForPrinting(void); 402 + void* WKBundlePageCopyTrackedRepaintRects(void); 403 + void* WKBundlePageCreateScaledSnapshotInDocumentCoordinates(void); 404 + void* WKBundlePageCreateSnapshotInDocumentCoordinates(void); 405 + void* WKBundlePageCreateSnapshotInViewCoordinates(void); 406 + void* WKBundlePageCreateSnapshotWithOptions(void); 407 + void* WKBundlePageDidEnterFullScreen(void); 408 + void* WKBundlePageDidExitFullScreen(void); 409 + void* WKBundlePageExecuteEditingCommand(void); 410 + void* WKBundlePageExtendIncrementalRenderingSuppression(void); 411 + void* WKBundlePageFindString(void); 412 + void* WKBundlePageForceRepaint(void); 413 + void* WKBundlePageGetAppCacheUsageForOrigin(void); 414 + void* WKBundlePageGetBackForwardList(void); 415 + void* WKBundlePageGetBackingScaleFactor(void); 416 + void* WKBundlePageGetInspector(void); 417 + void* WKBundlePageGetMainFrame(void); 418 + void* WKBundlePageGetPageGroup(void); 419 + void* WKBundlePageGetPageZoomFactor(void); 420 + void* WKBundlePageGetRenderTreeSize(void); 421 + void* WKBundlePageGetTextZoomFactor(void); 422 + void* WKBundlePageGetTypeID(void); 423 + void* WKBundlePageGroupCopyIdentifier(void); 424 + void* WKBundlePageGroupGetTypeID(void); 425 + void* WKBundlePageHasComposition(void); 426 + void* WKBundlePageHasLocalDataForURL(void); 427 + void* WKBundlePageInsertNewlineInQuotedContent(void); 428 + void* WKBundlePageInstallPageOverlay(void); 429 + void* WKBundlePageInstallPageOverlayWithAnimation(void); 430 + void* WKBundlePageIsControlledByAutomation(void); 431 + void* WKBundlePageIsEditingCommandEnabled(void); 432 + void* WKBundlePageIsTrackingRepaints(void); 433 + void* WKBundlePageIsUsingEphemeralSession(void); 434 + void* WKBundlePageListenForLayoutMilestones(void); 435 + void* WKBundlePageNumberForElementById(void); 436 + void* WKBundlePageOverlayClear(void); 437 + void* WKBundlePageOverlayCreate(void); 438 + void* WKBundlePageOverlayFractionFadedIn(void); 439 + void* WKBundlePageOverlayGetTypeID(void); 440 + void* WKBundlePageOverlaySetAccessibilityClient(void); 441 + void* WKBundlePageOverlaySetNeedsDisplay(void); 442 + void* WKBundlePagePostMessage(void); 443 + void* WKBundlePagePostSynchronousMessageForTesting(void); 444 + void* WKBundlePageRegisterScrollOperationCompletionCallback(void); 445 + void* WKBundlePageRemoveAllUserContent(void); 446 + void* WKBundlePageResetApplicationCacheOriginQuota(void); 447 + void* WKBundlePageResetTrackedRepaints(void); 448 + void* WKBundlePageSetAppCacheMaximumSize(void); 449 + void* WKBundlePageSetApplicationCacheOriginQuota(void); 450 + void* WKBundlePageSetBottomOverhangImage(void); 451 + void* WKBundlePageSetComposition(void); 452 + void* WKBundlePageSetContextMenuClient(void); 453 + void* WKBundlePageSetDefersLoading(void); 454 + void* WKBundlePageSetEditorClient(void); 455 + void* WKBundlePageSetEventThrottlingBehaviorOverride(void); 456 + void* WKBundlePageSetFooterBanner(void); 457 + void* WKBundlePageSetFormClient(void); 458 + void* WKBundlePageSetFullScreenClient(void); 459 + void* WKBundlePageSetHeaderBanner(void); 460 + void* WKBundlePageSetPageLoaderClient(void); 461 + void* WKBundlePageSetPageZoomFactor(void); 462 + void* WKBundlePageSetPaintedObjectsCounterThreshold(void); 463 + void* WKBundlePageSetPolicyClient(void); 464 + void* WKBundlePageSetResourceLoadClient(void); 465 + void* WKBundlePageSetScaleAtOrigin(void); 466 + void* WKBundlePageSetTextZoomFactor(void); 467 + void* WKBundlePageSetTopOverhangImage(void); 468 + void* WKBundlePageSetTracksRepaints(void); 469 + void* WKBundlePageSetUIClient(void); 470 + void* WKBundlePageSimulateMouseDown(void); 471 + void* WKBundlePageSimulateMouseMotion(void); 472 + void* WKBundlePageSimulateMouseUp(void); 473 + void* WKBundlePageSizeAndMarginsInPixels(void); 474 + void* WKBundlePageStartMonitoringScrollOperations(void); 475 + void* WKBundlePageStopExtendingIncrementalRenderingSuppression(void); 476 + void* WKBundlePageStopLoading(void); 477 + void* WKBundlePageUninstallPageOverlay(void); 478 + void* WKBundlePageUninstallPageOverlayWithAnimation(void); 479 + void* WKBundlePageWillEnterFullScreen(void); 480 + void* WKBundlePageWillExitFullScreen(void); 481 + void* WKBundlePostMessage(void); 482 + void* WKBundlePostSynchronousMessage(void); 483 + void* WKBundleRangeHandleCopySnapshotWithOptions(void); 484 + void* WKBundleRangeHandleCreate(void); 485 + void* WKBundleRangeHandleGetBoundingRectInWindowCoordinates(void); 486 + void* WKBundleRangeHandleGetTypeID(void); 487 + void* WKBundleRemoveAllUserContent(void); 488 + void* WKBundleRemoveAllWebNotificationPermissions(void); 489 + void* WKBundleRemoveOriginAccessWhitelistEntry(void); 490 + void* WKBundleRemoveUserScript(void); 491 + void* WKBundleRemoveUserScripts(void); 492 + void* WKBundleRemoveUserStyleSheet(void); 493 + void* WKBundleRemoveUserStyleSheets(void); 494 + void* WKBundleReportException(void); 495 + void* WKBundleResetOriginAccessWhitelists(void); 496 + void* WKBundleResourceLoadStatisticsNotifyObserver(void); 497 + void* WKBundleScriptWorldClearWrappers(void); 498 + void* WKBundleScriptWorldCopyName(void); 499 + void* WKBundleScriptWorldCreateWorld(void); 500 + void* WKBundleScriptWorldGetTypeID(void); 501 + void* WKBundleScriptWorldMakeAllShadowRootsOpen(void); 502 + void* WKBundleScriptWorldNormalWorld(void); 503 + void* WKBundleSetAllowFileAccessFromFileURLs(void); 504 + void* WKBundleSetAllowStorageAccessFromFileURLS(void); 505 + void* WKBundleSetAllowUniversalAccessFromFileURLs(void); 506 + void* WKBundleSetAsyncFrameScrollingEnabled(void); 507 + void* WKBundleSetAsynchronousSpellCheckingEnabled(void); 508 + void* WKBundleSetAuthorAndUserStylesEnabled(void); 509 + void* WKBundleSetClient(void); 510 + void* WKBundleSetDatabaseQuota(void); 511 + void* WKBundleSetFrameFlatteningEnabled(void); 512 + void* WKBundleSetJavaScriptCanAccessClipboard(void); 513 + void* WKBundleSetMinimumLogicalFontSize(void); 514 + void* WKBundleSetPopupBlockingEnabled(void); 515 + void* WKBundleSetPrivateBrowsingEnabled(void); 516 + void* WKBundleSetServiceWorkerProxyCreationCallback(void); 517 + void* WKBundleSetSpatialNavigationEnabled(void); 518 + void* WKBundleSetTabKeyCyclesThroughElements(void); 519 + void* WKBundleSetUseDashboardCompatibilityMode(void); 520 + void* WKBundleSetUserStyleSheetLocation(void); 521 + void* WKBundleSetWebNotificationPermission(void); 522 + void* WKCertificateInfoCreateWithCertficateChain(void); 523 + void* WKCertificateInfoCreateWithServerTrust(void); 524 + void* WKCertificateInfoGetCertificateChain(void); 525 + void* WKCertificateInfoGetServerTrust(void); 526 + void* WKCertificateInfoGetTypeID(void); 527 + void* WKConnectionGetTypeID(void); 528 + void* WKConnectionPostMessage(void); 529 + void* WKConnectionSetConnectionClient(void); 530 + void* WKContextAddVisitedLink(void); 531 + void* WKContextAllowSpecificHTTPSCertificateForHost(void); 532 + void* WKContextClearCachedCredentials(void); 533 + void* WKContextClearPluginClientPolicies(void); 534 + void* WKContextClearVisitedLinks(void); 535 + void* WKContextConfigurationCopyApplicationCacheDirectory(void); 536 + void* WKContextConfigurationCopyDiskCacheDirectory(void); 537 + void* WKContextConfigurationCopyIndexedDBDatabaseDirectory(void); 538 + void* WKContextConfigurationCopyInjectedBundlePath(void); 539 + void* WKContextConfigurationCopyLocalStorageDirectory(void); 540 + void* WKContextConfigurationCopyMediaKeysStorageDirectory(void); 541 + void* WKContextConfigurationCopyOverrideLanguages(void); 542 + void* WKContextConfigurationCopyResourceLoadStatisticsDirectory(void); 543 + void* WKContextConfigurationCopyWebSQLDatabaseDirectory(void); 544 + void* WKContextConfigurationCreate(void); 545 + void* WKContextConfigurationCreateWithLegacyOptions(void); 546 + void* WKContextConfigurationFullySynchronousModeIsAllowedForTesting(void); 547 + void* WKContextConfigurationSetApplicationCacheDirectory(void); 548 + void* WKContextConfigurationSetDiskCacheDirectory(void); 549 + void* WKContextConfigurationSetFullySynchronousModeIsAllowedForTesting(void); 550 + void* WKContextConfigurationSetIndexedDBDatabaseDirectory(void); 551 + void* WKContextConfigurationSetInjectedBundlePath(void); 552 + void* WKContextConfigurationSetLocalStorageDirectory(void); 553 + void* WKContextConfigurationSetMediaKeysStorageDirectory(void); 554 + void* WKContextConfigurationSetOverrideLanguages(void); 555 + void* WKContextConfigurationSetResourceLoadStatisticsDirectory(void); 556 + void* WKContextConfigurationSetShouldCaptureAudioInUIProcess(void); 557 + void* WKContextConfigurationSetWebSQLDatabaseDirectory(void); 558 + void* WKContextConfigurationShouldCaptureAudioInUIProcess(void); 559 + void* WKContextCopyPlugInAutoStartOriginHashes(void); 560 + void* WKContextCopyPlugInInfoForBundleIdentifier(void); 561 + void* WKContextCreate(void); 562 + void* WKContextCreateWithConfiguration(void); 563 + void* WKContextCreateWithInjectedBundlePath(void); 564 + void* WKContextDisableProcessTermination(void); 565 + void* WKContextDownloadURLRequest(void); 566 + void* WKContextEnableProcessTermination(void); 567 + void* WKContextGarbageCollectJavaScriptObjects(void); 568 + void* WKContextGetApplicationCacheManager(void); 569 + void* WKContextGetCacheModel(void); 570 + void* WKContextGetCookieManager(void); 571 + void* WKContextGetDatabaseProcessIdentifier(void); 572 + void* WKContextGetGeolocationManager(void); 573 + void* WKContextGetGlobalStatistics(void); 574 + void* WKContextGetIconDatabase(void); 575 + void* WKContextGetInfoForInstalledPlugIns(void); 576 + void* WKContextGetKeyValueStorageManager(void); 577 + void* WKContextGetMaximumNumberOfProcesses(void); 578 + void* WKContextGetMediaSessionFocusManager(void); 579 + void* WKContextGetNetworkProcessIdentifier(void); 580 + void* WKContextGetNotificationManager(void); 581 + void* WKContextGetResourceCacheManager(void); 582 + void* WKContextGetStatistics(void); 583 + void* WKContextGetStatisticsWithOptions(void); 584 + void* WKContextGetTypeID(void); 585 + void* WKContextGetWebsiteDataStore(void); 586 + void* WKContextIsPlugInUpdateAvailable(void); 587 + void* WKContextJavaScriptConfigurationFileEnabled(void); 588 + void* WKContextMenuCopySubmenuItems(void); 589 + void* WKContextMenuItemCopyTitle(void); 590 + void* WKContextMenuItemCreateAsAction(void); 591 + void* WKContextMenuItemCreateAsCheckableAction(void); 592 + void* WKContextMenuItemCreateAsSubmenu(void); 593 + void* WKContextMenuItemGetChecked(void); 594 + void* WKContextMenuItemGetEnabled(void); 595 + void* WKContextMenuItemGetTag(void); 596 + void* WKContextMenuItemGetType(void); 597 + void* WKContextMenuItemGetTypeID(void); 598 + void* WKContextMenuItemGetUserData(void); 599 + void* WKContextMenuItemSeparatorItem(void); 600 + void* WKContextMenuItemSetUserData(void); 601 + void* WKContextMenuListenerGetTypeID(void); 602 + void* WKContextMenuListenerUseContextMenuItems(void); 603 + void* WKContextPostMessageToInjectedBundle(void); 604 + void* WKContextPreconnectToServer(void); 605 + void* WKContextRefreshPlugIns(void); 606 + void* WKContextRegisterSchemeForCustomProtocol(void); 607 + void* WKContextRegisterURLSchemeAsBypassingContentSecurityPolicy(void); 608 + void* WKContextRegisterURLSchemeAsCachePartitioned(void); 609 + void* WKContextRegisterURLSchemeAsEmptyDocument(void); 610 + void* WKContextRegisterURLSchemeAsSecure(void); 611 + void* WKContextResetHSTSHosts(void); 612 + void* WKContextResetHSTSHostsAddedAfterDate(void); 613 + void* WKContextResumeDownload(void); 614 + void* WKContextSetAdditionalPluginsDirectory(void); 615 + void* WKContextSetAllowsAnySSLCertificateForServiceWorkerTesting(void); 616 + void* WKContextSetAllowsAnySSLCertificateForWebSocketTesting(void); 617 + void* WKContextSetAlwaysUsesComplexTextCodePath(void); 618 + void* WKContextSetCacheModel(void); 619 + void* WKContextSetCanHandleHTTPSServerTrustEvaluation(void); 620 + void* WKContextSetClient(void); 621 + void* WKContextSetConnectionClient(void); 622 + void* WKContextSetCookieStorageDirectory(void); 623 + void* WKContextSetDiskCacheSpeculativeValidationEnabled(void); 624 + void* WKContextSetDomainRelaxationForbiddenForURLScheme(void); 625 + void* WKContextSetDownloadClient(void); 626 + void* WKContextSetFontWhitelist(void); 627 + void* WKContextSetHTTPPipeliningEnabled(void); 628 + void* WKContextSetHistoryClient(void); 629 + void* WKContextSetIconDatabasePath(void); 630 + void* WKContextSetInitializationUserDataForInjectedBundle(void); 631 + void* WKContextSetInjectedBundleClient(void); 632 + void* WKContextSetInvalidMessageFunction(void); 633 + void* WKContextSetJavaScriptConfigurationFileEnabled(void); 634 + void* WKContextSetJavaScriptGarbageCollectorTimerEnabled(void); 635 + void* WKContextSetMaximumNumberOfProcesses(void); 636 + void* WKContextSetMemoryCacheDisabled(void); 637 + void* WKContextSetPlugInAutoStartOriginHashes(void); 638 + void* WKContextSetPlugInAutoStartOrigins(void); 639 + void* WKContextSetPlugInAutoStartOriginsFilteringOutEntriesAddedAfterTime(void); 640 + void* WKContextSetPluginLoadClientPolicy(void); 641 + void* WKContextSetProcessModel(void); 642 + void* WKContextSetShouldUseFontSmoothing(void); 643 + void* WKContextSetUsesNetworkProcess(void); 644 + void* WKContextShouldBlockWebGL(void); 645 + void* WKContextShouldSuggestBlockWebGL(void); 646 + void* WKContextStartMemorySampler(void); 647 + void* WKContextStopMemorySampler(void); 648 + void* WKContextTerminateNetworkProcess(void); 649 + void* WKContextTerminateServiceWorkerProcess(void); 650 + void* WKContextUnregisterSchemeForCustomProtocol(void); 651 + void* WKContextUseTestingNetworkSession(void); 652 + void* WKContextWarmInitialProcess(void); 653 + void* WKCookieManagerDeleteAllCookies(void); 654 + void* WKCookieManagerDeleteAllCookiesModifiedAfterDate(void); 655 + void* WKCookieManagerDeleteCookiesForHostname(void); 656 + void* WKCookieManagerGetHTTPCookieAcceptPolicy(void); 657 + void* WKCookieManagerGetHostnamesWithCookies(void); 658 + void* WKCookieManagerGetTypeID(void); 659 + void* WKCookieManagerSetClient(void); 660 + void* WKCookieManagerSetCookieStoragePartitioningEnabled(void); 661 + void* WKCookieManagerSetHTTPCookieAcceptPolicy(void); 662 + void* WKCookieManagerSetStorageAccessAPIEnabled(void); 663 + void* WKCookieManagerStartObservingCookieChanges(void); 664 + void* WKCookieManagerStopObservingCookieChanges(void); 665 + void* WKCredentialCopyUser(void); 666 + void* WKCredentialCreate(void); 667 + void* WKCredentialCreateWithCertificateInfo(void); 668 + void* WKCredentialGetTypeID(void); 669 + void* WKDataCreate(void); 670 + void* WKDataGetBytes(void); 671 + void* WKDataGetSize(void); 672 + void* WKDataGetTypeID(void); 673 + void* WKDictionaryCopyKeys(void); 674 + void* WKDictionaryCreate(void); 675 + void* WKDictionaryGetItemForKey(void); 676 + void* WKDictionaryGetSize(void); 677 + void* WKDictionaryGetTypeID(void); 678 + void* WKDictionarySetItem(void); 679 + void* WKDoubleCreate(void); 680 + void* WKDoubleGetTypeID(void); 681 + void* WKDoubleGetValue(void); 682 + void* WKDownloadCancel(void); 683 + void* WKDownloadCopyRedirectChain(void); 684 + void* WKDownloadCopyRequest(void); 685 + void* WKDownloadGetID(void); 686 + void* WKDownloadGetOriginatingPage(void); 687 + void* WKDownloadGetResumeData(void); 688 + void* WKDownloadGetTypeID(void); 689 + void* WKDownloadGetWasUserInitiated(void); 690 + void* WKErrorCopyCFError(void); 691 + void* WKErrorCopyDomain(void); 692 + void* WKErrorCopyFailingURL(void); 693 + void* WKErrorCopyLocalizedDescription(void); 694 + void* WKErrorCopyWKErrorDomain(void); 695 + void* WKErrorCreateWithCFError(void); 696 + void* WKErrorGetErrorCode(void); 697 + void* WKErrorGetTypeID(void); 698 + void* WKFormSubmissionListenerContinue(void); 699 + void* WKFormSubmissionListenerGetTypeID(void); 700 + void* WKFrameCanProvideSource(void); 701 + void* WKFrameCanShowMIMEType(void); 702 + void* WKFrameCopyMIMEType(void); 703 + void* WKFrameCopyProvisionalURL(void); 704 + void* WKFrameCopyTitle(void); 705 + void* WKFrameCopyURL(void); 706 + void* WKFrameCopyUnreachableURL(void); 707 + void* WKFrameCreateFrameHandle(void); 708 + void* WKFrameCreateFrameInfo(void); 709 + void* WKFrameGetCertificateInfo(void); 710 + void* WKFrameGetFrameLoadState(void); 711 + void* WKFrameGetMainResourceData(void); 712 + void* WKFrameGetPage(void); 713 + void* WKFrameGetResourceData(void); 714 + void* WKFrameGetTypeID(void); 715 + void* WKFrameGetWebArchive(void); 716 + void* WKFrameHandleGetFrameID(void); 717 + void* WKFrameHandleGetTypeID(void); 718 + void* WKFrameInfoGetFrameHandleRef(void); 719 + void* WKFrameInfoGetTypeID(void); 720 + void* WKFrameIsDisplayingMarkupDocument(void); 721 + void* WKFrameIsDisplayingStandaloneImageDocument(void); 722 + void* WKFrameIsFrameSet(void); 723 + void* WKFrameIsMainFrame(void); 724 + void* WKFramePolicyListenerDownload(void); 725 + void* WKFramePolicyListenerGetTypeID(void); 726 + void* WKFramePolicyListenerIgnore(void); 727 + void* WKFramePolicyListenerUse(void); 728 + void* WKFramePolicyListenerUseWithPolicies(void); 729 + void* WKFrameStopLoading(void); 730 + void* WKGeolocationManagerGetTypeID(void); 731 + void* WKGeolocationManagerProviderDidChangePosition(void); 732 + void* WKGeolocationManagerProviderDidFailToDeterminePosition(void); 733 + void* WKGeolocationManagerProviderDidFailToDeterminePositionWithErrorMessage(void); 734 + void* WKGeolocationManagerSetProvider(void); 735 + void* WKGeolocationPermissionRequestAllow(void); 736 + void* WKGeolocationPermissionRequestDeny(void); 737 + void* WKGeolocationPermissionRequestGetTypeID(void); 738 + void* WKGeolocationPositionCreate(void); 739 + void* WKGeolocationPositionCreate_b(void); 740 + void* WKGeolocationPositionCreate_c(void); 741 + void* WKGeolocationPositionGetTypeID(void); 742 + void* WKGetAPIURLSchemeTaskInstanceCount(void); 743 + void* WKGetTypeID(void); 744 + void* WKGetWebURLSchemeTaskInstanceCount(void); 745 + void* WKHitTestResultCopyAbsoluteImageURL(void); 746 + void* WKHitTestResultCopyAbsoluteLinkURL(void); 747 + void* WKHitTestResultCopyAbsoluteMediaURL(void); 748 + void* WKHitTestResultCopyAbsolutePDFURL(void); 749 + void* WKHitTestResultCopyLinkLabel(void); 750 + void* WKHitTestResultCopyLinkTitle(void); 751 + void* WKHitTestResultCopyLookupText(void); 752 + void* WKHitTestResultGetElementBoundingBox(void); 753 + void* WKHitTestResultGetTypeID(void); 754 + void* WKHitTestResultIsContentEditable(void); 755 + void* WKIconDatabaseCheckIntegrityBeforeOpening(void); 756 + void* WKIconDatabaseClose(void); 757 + void* WKIconDatabaseCopyIconDataForPageURL(void); 758 + void* WKIconDatabaseCopyIconURLForPageURL(void); 759 + void* WKIconDatabaseEnableDatabaseCleanup(void); 760 + void* WKIconDatabaseGetTypeID(void); 761 + void* WKIconDatabaseReleaseIconForURL(void); 762 + void* WKIconDatabaseRemoveAllIcons(void); 763 + void* WKIconDatabaseRetainIconForURL(void); 764 + void* WKIconDatabaseSetIconDataForIconURL(void); 765 + void* WKIconDatabaseSetIconDatabaseClient(void); 766 + void* WKIconDatabaseSetIconURLForPageURL(void); 767 + void* WKIconDatabaseTryCopyCGImageArrayForURL(void); 768 + void* WKIconDatabaseTryGetCGImageForURL(void); 769 + void* WKImageCreate(void); 770 + void* WKImageCreateCGImage(void); 771 + void* WKImageCreateFromCGImage(void); 772 + void* WKImageGetSize(void); 773 + void* WKImageGetTypeID(void); 774 + void* WKInspectorAttach(void); 775 + void* WKInspectorClose(void); 776 + void* WKInspectorConnect(void); 777 + void* WKInspectorDetach(void); 778 + void* WKInspectorGetPage(void); 779 + void* WKInspectorGetTypeID(void); 780 + void* WKInspectorHide(void); 781 + void* WKInspectorIsAttached(void); 782 + void* WKInspectorIsConnected(void); 783 + void* WKInspectorIsElementSelectionActive(void); 784 + void* WKInspectorIsFront(void); 785 + void* WKInspectorIsProfilingPage(void); 786 + void* WKInspectorIsVisible(void); 787 + void* WKInspectorShow(void); 788 + void* WKInspectorShowConsole(void); 789 + void* WKInspectorShowMainResourceForFrame(void); 790 + void* WKInspectorShowResources(void); 791 + void* WKInspectorToggleElementSelection(void); 792 + void* WKInspectorTogglePageProfiling(void); 793 + void* WKKeyValueStorageManagerDeleteAllEntries(void); 794 + void* WKKeyValueStorageManagerDeleteEntriesForOrigin(void); 795 + void* WKKeyValueStorageManagerGetCreationTimeKey(void); 796 + void* WKKeyValueStorageManagerGetKeyValueStorageOrigins(void); 797 + void* WKKeyValueStorageManagerGetModificationTimeKey(void); 798 + void* WKKeyValueStorageManagerGetOriginKey(void); 799 + void* WKKeyValueStorageManagerGetStorageDetailsByOrigin(void); 800 + void* WKKeyValueStorageManagerGetTypeID(void); 801 + void* WKMediaSessionFocusManagerGetTypeID(void); 802 + void* WKMediaSessionFocusManagerSetClient(void); 803 + void* WKMediaSessionFocusManagerSetVolumeOfFocusedMediaElement(void); 804 + void* WKMediaSessionFocusManagerValueForPlaybackAttribute(void); 805 + void* WKMediaSessionMetadataCopyAlbum(void); 806 + void* WKMediaSessionMetadataCopyArtist(void); 807 + void* WKMediaSessionMetadataCopyArtworkURL(void); 808 + void* WKMediaSessionMetadataCopyTitle(void); 809 + void* WKMediaSessionMetadataGetTypeID(void); 810 + void* WKMutableArrayCreate(void); 811 + void* WKMutableDictionaryCreate(void); 812 + void* WKNavigationActionGetTypeID(void); 813 + void* WKNavigationDataCopyNavigationDestinationURL(void); 814 + void* WKNavigationDataCopyOriginalRequest(void); 815 + void* WKNavigationDataCopyTitle(void); 816 + void* WKNavigationDataCopyURL(void); 817 + void* WKNavigationDataGetTypeID(void); 818 + void* WKNavigationGetTypeID(void); 819 + void* WKNavigationResponseCanShowMIMEType(void); 820 + void* WKNavigationResponseGetTypeID(void); 821 + void* WKNotificationCopyBody(void); 822 + void* WKNotificationCopyDir(void); 823 + void* WKNotificationCopyIconURL(void); 824 + void* WKNotificationCopyLang(void); 825 + void* WKNotificationCopyTag(void); 826 + void* WKNotificationCopyTitle(void); 827 + void* WKNotificationGetID(void); 828 + void* WKNotificationGetSecurityOrigin(void); 829 + void* WKNotificationGetTypeID(void); 830 + void* WKNotificationManagerGetLocalIDForTesting(void); 831 + void* WKNotificationManagerGetTypeID(void); 832 + void* WKNotificationManagerProviderDidClickNotification(void); 833 + void* WKNotificationManagerProviderDidCloseNotifications(void); 834 + void* WKNotificationManagerProviderDidRemoveNotificationPolicies(void); 835 + void* WKNotificationManagerProviderDidShowNotification(void); 836 + void* WKNotificationManagerProviderDidUpdateNotificationPolicy(void); 837 + void* WKNotificationManagerSetProvider(void); 838 + void* WKNotificationPermissionRequestAllow(void); 839 + void* WKNotificationPermissionRequestDeny(void); 840 + void* WKNotificationPermissionRequestGetTypeID(void); 841 + void* WKObjCTypeWrapperCreate(void); 842 + void* WKObjCTypeWrapperGetObject(void); 843 + void* WKObjCTypeWrapperGetTypeID(void); 844 + void* WKOpenPanelParametersCopyAcceptedFileExtensions(void); 845 + void* WKOpenPanelParametersCopyAcceptedMIMETypes(void); 846 + void* WKOpenPanelParametersCopyCapture(void); 847 + void* WKOpenPanelParametersCopySelectedFileNames(void); 848 + void* WKOpenPanelParametersGetAllowsDirectories(void); 849 + void* WKOpenPanelParametersGetAllowsMultipleFiles(void); 850 + void* WKOpenPanelParametersGetMediaCaptureType(void); 851 + void* WKOpenPanelParametersGetTypeID(void); 852 + void* WKOpenPanelResultListenerCancel(void); 853 + void* WKOpenPanelResultListenerChooseFiles(void); 854 + void* WKOpenPanelResultListenerGetTypeID(void); 855 + void* WKPageAreScrollbarAnimationsSuppressed(void); 856 + void* WKPageBackgroundExtendsBeyondPage(void); 857 + void* WKPageBeginPrinting(void); 858 + void* WKPageCallAfterNextPresentationUpdate(void); 859 + void* WKPageCanDelete(void); 860 + void* WKPageCanGoBack(void); 861 + void* WKPageCanGoForward(void); 862 + void* WKPageCenterSelectionInVisibleArea(void); 863 + void* WKPageClearUserMediaState(void); 864 + void* WKPageClearWheelEventTestTrigger(void); 865 + void* WKPageClose(void); 866 + void* WKPageComputePagesForPrinting(void); 867 + void* WKPageConfigurationCreate(void); 868 + void* WKPageConfigurationGetContext(void); 869 + void* WKPageConfigurationGetPageGroup(void); 870 + void* WKPageConfigurationGetPreferences(void); 871 + void* WKPageConfigurationGetRelatedPage(void); 872 + void* WKPageConfigurationGetTypeID(void); 873 + void* WKPageConfigurationGetUserContentController(void); 874 + void* WKPageConfigurationGetWebsiteDataStore(void); 875 + void* WKPageConfigurationSetBackgroundCPULimit(void); 876 + void* WKPageConfigurationSetContext(void); 877 + void* WKPageConfigurationSetInitialCapitalizationEnabled(void); 878 + void* WKPageConfigurationSetPageGroup(void); 879 + void* WKPageConfigurationSetPreferences(void); 880 + void* WKPageConfigurationSetRelatedPage(void); 881 + void* WKPageConfigurationSetUserContentController(void); 882 + void* WKPageConfigurationSetWebsiteDataStore(void); 883 + void* WKPageCopyActiveURL(void); 884 + void* WKPageCopyApplicationNameForUserAgent(void); 885 + void* WKPageCopyCommittedURL(void); 886 + void* WKPageCopyCustomTextEncodingName(void); 887 + void* WKPageCopyCustomUserAgent(void); 888 + void* WKPageCopyPageConfiguration(void); 889 + void* WKPageCopyPendingAPIRequestURL(void); 890 + void* WKPageCopyProvisionalURL(void); 891 + void* WKPageCopyRelatedPages(void); 892 + void* WKPageCopySessionState(void); 893 + void* WKPageCopyStandardUserAgentWithApplicationName(void); 894 + void* WKPageCopyTitle(void); 895 + void* WKPageCopyUserAgent(void); 896 + void* WKPageCountStringMatches(void); 897 + void* WKPageCreateObservableState(void); 898 + void* WKPageDidAllowPointerLock(void); 899 + void* WKPageDidDenyPointerLock(void); 900 + void* WKPageDrawPagesToPDF(void); 901 + void* WKPageEndPrinting(void); 902 + void* WKPageExecuteCommand(void); 903 + void* WKPageFindString(void); 904 + void* WKPageFindStringMatches(void); 905 + void* WKPageFixedLayoutSize(void); 906 + void* WKPageForceRepaint(void); 907 + void* WKPageGetAddsVisitedLinks(void); 908 + void* WKPageGetAllowsRemoteInspection(void); 909 + void* WKPageGetApplicationManifest_b(void); 910 + void* WKPageGetBackForwardList(void); 911 + void* WKPageGetBackingScaleFactor(void); 912 + void* WKPageGetBytecodeProfile(void); 913 + void* WKPageGetContentsAsMHTMLData(void); 914 + void* WKPageGetContentsAsString(void); 915 + void* WKPageGetContext(void); 916 + void* WKPageGetEstimatedProgress(void); 917 + void* WKPageGetFocusedFrame(void); 918 + void* WKPageGetFrameSetLargestFrame(void); 919 + void* WKPageGetFullscreenDelegate(void); 920 + void* WKPageGetGapBetweenPages(void); 921 + void* WKPageGetImageForFindMatch(void); 922 + void* WKPageGetInspector(void); 923 + void* WKPageGetIsControlledByAutomation(void); 924 + void* WKPageGetMainFrame(void); 925 + void* WKPageGetMediaCaptureEnabled(void); 926 + void* WKPageGetMediaState(void); 927 + void* WKPageGetObjectRegistry(void); 928 + void* WKPageGetPageCount(void); 929 + void* WKPageGetPageGroup(void); 930 + void* WKPageGetPageLength(void); 931 + void* WKPageGetPageZoomFactor(void); 932 + void* WKPageGetPaginationBehavesLikeColumns(void); 933 + void* WKPageGetPaginationLineGridEnabled(void); 934 + void* WKPageGetPaginationMode(void); 935 + void* WKPageGetProcessIdentifier(void); 936 + void* WKPageGetRenderTreeSize(void); 937 + void* WKPageGetResourceCachingDisabled(void); 938 + void* WKPageGetSamplingProfilerOutput(void); 939 + void* WKPageGetScaleFactor(void); 940 + void* WKPageGetScrollPinningBehavior(void); 941 + void* WKPageGetSelectionAsWebArchiveData(void); 942 + void* WKPageGetSessionBackForwardListItemValueType(void); 943 + void* WKPageGetSessionHistoryURLValueType(void); 944 + void* WKPageGetSourceForFrame(void); 945 + void* WKPageGetTextZoomFactor(void); 946 + void* WKPageGetTypeID(void); 947 + void* WKPageGoBack(void); 948 + void* WKPageGoForward(void); 949 + void* WKPageGoToBackForwardListItem(void); 950 + void* WKPageGroupAddUserScript(void); 951 + void* WKPageGroupAddUserStyleSheet(void); 952 + void* WKPageGroupCreateWithIdentifier(void); 953 + void* WKPageGroupGetPreferences(void); 954 + void* WKPageGroupGetTypeID(void); 955 + void* WKPageGroupGetUserContentController(void); 956 + void* WKPageGroupRemoveAllUserScripts(void); 957 + void* WKPageGroupRemoveAllUserStyleSheets(void); 958 + void* WKPageGroupSetPreferences(void); 959 + void* WKPageHandleMediaEvent(void); 960 + void* WKPageHasHorizontalScrollbar(void); 961 + void* WKPageHasMediaSessionWithActiveMediaElements(void); 962 + void* WKPageHasSelectedRange(void); 963 + void* WKPageHasVerticalScrollbar(void); 964 + void* WKPageHideFindUI(void); 965 + void* WKPageHorizontalRubberBandingIsEnabled(void); 966 + void* WKPageIsClosed(void); 967 + void* WKPageIsContentEditable(void); 968 + void* WKPageIsPinnedToBottomSide(void); 969 + void* WKPageIsPinnedToLeftSide(void); 970 + void* WKPageIsPinnedToRightSide(void); 971 + void* WKPageIsPinnedToTopSide(void); 972 + void* WKPageIsPlayingAudio(void); 973 + void* WKPageIsPlayingVideoInEnhancedFullscreen(void); 974 + void* WKPageIsURLKnownHSTSHost(void); 975 + void* WKPageIsWebProcessResponsive(void); 976 + void* WKPageListenForLayoutMilestones(void); 977 + void* WKPageLoadAlternateHTMLString(void); 978 + void* WKPageLoadAlternateHTMLStringWithUserData(void); 979 + void* WKPageLoadData(void); 980 + void* WKPageLoadDataWithUserData(void); 981 + void* WKPageLoadFile(void); 982 + void* WKPageLoadFileWithUserData(void); 983 + void* WKPageLoadHTMLString(void); 984 + void* WKPageLoadHTMLStringWithUserData(void); 985 + void* WKPageLoadPlainTextString(void); 986 + void* WKPageLoadPlainTextStringWithUserData(void); 987 + void* WKPageLoadURL(void); 988 + void* WKPageLoadURLRequest(void); 989 + void* WKPageLoadURLRequestWithUserData(void); 990 + void* WKPageLoadURLWithShouldOpenExternalURLsPolicy(void); 991 + void* WKPageLoadURLWithUserData(void); 992 + void* WKPageLoadWebArchiveData(void); 993 + void* WKPageLoadWebArchiveDataWithUserData(void); 994 + void* WKPageLookUpFrameFromHandle(void); 995 + void* WKPagePostMessageToInjectedBundle(void); 996 + void* WKPageReload(void); 997 + void* WKPageReloadExpiredOnly(void); 998 + void* WKPageReloadFromOrigin(void); 999 + void* WKPageReloadWithoutContentBlockers(void); 1000 + void* WKPageRenderTreeExternalRepresentation(void); 1001 + void* WKPageRestoreFromSessionState(void); 1002 + void* WKPageRestoreFromSessionStateWithoutNavigation(void); 1003 + void* WKPageRubberBandsAtBottom(void); 1004 + void* WKPageRubberBandsAtLeft(void); 1005 + void* WKPageRubberBandsAtRight(void); 1006 + void* WKPageRubberBandsAtTop(void); 1007 + void* WKPageRunBeforeUnloadConfirmPanelResultListenerCall(void); 1008 + void* WKPageRunBeforeUnloadConfirmPanelResultListenerGetTypeID(void); 1009 + void* WKPageRunJavaScriptAlertResultListenerCall(void); 1010 + void* WKPageRunJavaScriptAlertResultListenerGetTypeID(void); 1011 + void* WKPageRunJavaScriptConfirmResultListenerCall(void); 1012 + void* WKPageRunJavaScriptConfirmResultListenerGetTypeID(void); 1013 + void* WKPageRunJavaScriptInMainFrame(void); 1014 + void* WKPageRunJavaScriptInMainFrame_b(void); 1015 + void* WKPageRunJavaScriptPromptResultListenerCall(void); 1016 + void* WKPageRunJavaScriptPromptResultListenerGetTypeID(void); 1017 + void* WKPageSelectContextMenuItem(void); 1018 + void* WKPageSelectFindMatch(void); 1019 + void* WKPageSetAddsVisitedLinks(void); 1020 + void* WKPageSetAllowsRemoteInspection(void); 1021 + void* WKPageSetApplicationNameForUserAgent(void); 1022 + void* WKPageSetBackgroundExtendsBeyondPage(void); 1023 + void* WKPageSetControlledByAutomation(void); 1024 + void* WKPageSetCustomBackingScaleFactor(void); 1025 + void* WKPageSetCustomTextEncodingName(void); 1026 + void* WKPageSetCustomUserAgent(void); 1027 + void* WKPageSetEnableHorizontalRubberBanding(void); 1028 + void* WKPageSetEnableVerticalRubberBanding(void); 1029 + void* WKPageSetFixedLayoutSize(void); 1030 + void* WKPageSetFullscreenDelegate(void); 1031 + void* WKPageSetGapBetweenPages(void); 1032 + void* WKPageSetIgnoresViewportScaleLimits(void); 1033 + void* WKPageSetMaintainsInactiveSelection(void); 1034 + void* WKPageSetMayStartMediaWhenInWindow(void); 1035 + void* WKPageSetMediaCaptureEnabled(void); 1036 + void* WKPageSetMediaVolume(void); 1037 + void* WKPageSetMuted(void); 1038 + void* WKPageSetPageAndTextZoomFactors(void); 1039 + void* WKPageSetPageContextMenuClient(void); 1040 + void* WKPageSetPageDiagnosticLoggingClient(void); 1041 + void* WKPageSetPageFindClient(void); 1042 + void* WKPageSetPageFindMatchesClient(void); 1043 + void* WKPageSetPageFormClient(void); 1044 + void* WKPageSetPageInjectedBundleClient(void); 1045 + void* WKPageSetPageLength(void); 1046 + void* WKPageSetPageLoaderClient(void); 1047 + void* WKPageSetPageNavigationClient(void); 1048 + void* WKPageSetPagePolicyClient(void); 1049 + void* WKPageSetPageUIClient(void); 1050 + void* WKPageSetPageZoomFactor(void); 1051 + void* WKPageSetPaginationBehavesLikeColumns(void); 1052 + void* WKPageSetPaginationLineGridEnabled(void); 1053 + void* WKPageSetPaginationMode(void); 1054 + void* WKPageSetResourceCachingDisabled(void); 1055 + void* WKPageSetRubberBandsAtBottom(void); 1056 + void* WKPageSetRubberBandsAtLeft(void); 1057 + void* WKPageSetRubberBandsAtRight(void); 1058 + void* WKPageSetRubberBandsAtTop(void); 1059 + void* WKPageSetScaleFactor(void); 1060 + void* WKPageSetScrollPinningBehavior(void); 1061 + void* WKPageSetSuppressScrollbarAnimations(void); 1062 + void* WKPageSetTextZoomFactor(void); 1063 + void* WKPageSetUseFixedLayout(void); 1064 + void* WKPageSetUserContentExtensionsEnabled(void); 1065 + void* WKPageStopLoading(void); 1066 + void* WKPageSupportsTextEncoding(void); 1067 + void* WKPageSupportsTextZoom(void); 1068 + void* WKPageTerminate(void); 1069 + void* WKPageTryClose(void); 1070 + void* WKPageTryRestoreScrollPosition(void); 1071 + void* WKPageUpdateWebsitePolicies(void); 1072 + void* WKPageUseFixedLayout(void); 1073 + void* WKPageValidateCommand(void); 1074 + void* WKPageVerticalRubberBandingIsEnabled(void); 1075 + void* WKPageWillHandleHorizontalScrollEvents(void); 1076 + void* WKPlugInInfoBundleIdentifierKey(void); 1077 + void* WKPlugInInfoIsSandboxedKey(void); 1078 + void* WKPlugInInfoLoadPolicyKey(void); 1079 + void* WKPlugInInfoPathKey(void); 1080 + void* WKPlugInInfoUpdatePastLastBlockedVersionIsKnownAvailableKey(void); 1081 + void* WKPlugInInfoVersionKey(void); 1082 + void* WKPlugInInformationReplacementObscuredKey(void); 1083 + void* WKPluginInformationBundleIdentifierKey(void); 1084 + void* WKPluginInformationBundleShortVersionKey(void); 1085 + void* WKPluginInformationBundleVersionKey(void); 1086 + void* WKPluginInformationDefaultLoadPolicyKey(void); 1087 + void* WKPluginInformationDisplayNameKey(void); 1088 + void* WKPluginInformationFrameURLKey(void); 1089 + void* WKPluginInformationHasSandboxProfileKey(void); 1090 + void* WKPluginInformationMIMETypeKey(void); 1091 + void* WKPluginInformationPageURLKey(void); 1092 + void* WKPluginInformationPathKey(void); 1093 + void* WKPluginInformationPluginURLKey(void); 1094 + void* WKPluginInformationPluginspageAttributeURLKey(void); 1095 + void* WKPluginInformationUpdatePastLastBlockedVersionIsKnownAvailableKey(void); 1096 + void* WKPointCreate(void); 1097 + void* WKPointGetTypeID(void); 1098 + void* WKPointGetValue(void); 1099 + void* WKPreferencesCopyCursiveFontFamily(void); 1100 + void* WKPreferencesCopyDefaultTextEncodingName(void); 1101 + void* WKPreferencesCopyFTPDirectoryTemplatePath(void); 1102 + void* WKPreferencesCopyFantasyFontFamily(void); 1103 + void* WKPreferencesCopyFixedFontFamily(void); 1104 + void* WKPreferencesCopyMediaContentTypesRequiringHardwareSupport(void); 1105 + void* WKPreferencesCopyPictographFontFamily(void); 1106 + void* WKPreferencesCopySansSerifFontFamily(void); 1107 + void* WKPreferencesCopySerifFontFamily(void); 1108 + void* WKPreferencesCopyStandardFontFamily(void); 1109 + void* WKPreferencesCreate(void); 1110 + void* WKPreferencesCreateCopy(void); 1111 + void* WKPreferencesCreateWithIdentifier(void); 1112 + void* WKPreferencesEnableAllExperimentalFeatures(void); 1113 + void* WKPreferencesGetAVFoundationEnabled(void); 1114 + void* WKPreferencesGetAVFoundationNSURLSessionEnabled(void); 1115 + void* WKPreferencesGetAccelerated2DCanvasEnabled(void); 1116 + void* WKPreferencesGetAcceleratedCompositingEnabled(void); 1117 + void* WKPreferencesGetAcceleratedCompositingForOverflowScrollEnabled(void); 1118 + void* WKPreferencesGetAcceleratedDrawingEnabled(void); 1119 + void* WKPreferencesGetAccessibilityObjectModelEnabled(void); 1120 + void* WKPreferencesGetAggressiveTileRetentionEnabled(void); 1121 + void* WKPreferencesGetAllowMediaContentTypesRequiringHardwareSupportAsFallback(void); 1122 + void* WKPreferencesGetAllowsAirPlayForMediaPlayback(void); 1123 + void* WKPreferencesGetAllowsPictureInPictureMediaPlayback(void); 1124 + void* WKPreferencesGetAnimatedImageAsyncDecodingEnabled(void); 1125 + void* WKPreferencesGetAntialiasedFontDilationEnabled(void); 1126 + void* WKPreferencesGetApplePayCapabilityDisclosureAllowed(void); 1127 + void* WKPreferencesGetApplePayEnabled(void); 1128 + void* WKPreferencesGetApplicationChromeModeEnabled(void); 1129 + void* WKPreferencesGetArtificialPluginInitializationDelayEnabled(void); 1130 + void* WKPreferencesGetAsynchronousPluginInitializationEnabled(void); 1131 + void* WKPreferencesGetAsynchronousPluginInitializationEnabledForAllPlugins(void); 1132 + void* WKPreferencesGetAsynchronousSpellCheckingEnabled(void); 1133 + void* WKPreferencesGetAttachmentElementEnabled(void); 1134 + void* WKPreferencesGetAudioPlaybackRequiresUserGesture(void); 1135 + void* WKPreferencesGetAuthorAndUserStylesEnabled(void); 1136 + void* WKPreferencesGetAutostartOriginPlugInSnapshottingEnabled(void); 1137 + void* WKPreferencesGetBackspaceKeyNavigationEnabled(void); 1138 + void* WKPreferencesGetBeaconAPIEnabled(void); 1139 + void* WKPreferencesGetCSSAnimationTriggersEnabled(void); 1140 + void* WKPreferencesGetCanvasUsesAcceleratedDrawing(void); 1141 + void* WKPreferencesGetCaretBrowsingEnabled(void); 1142 + void* WKPreferencesGetCompositingBordersVisible(void); 1143 + void* WKPreferencesGetCompositingRepaintCountersVisible(void); 1144 + void* WKPreferencesGetCookieEnabled(void); 1145 + void* WKPreferencesGetCustomPasteboardDataEnabled(void); 1146 + void* WKPreferencesGetDNSPrefetchingEnabled(void); 1147 + void* WKPreferencesGetDOMPasteAllowed(void); 1148 + void* WKPreferencesGetDOMTimersThrottlingEnabled(void); 1149 + void* WKPreferencesGetDataTransferItemsEnabled(void); 1150 + void* WKPreferencesGetDatabasesEnabled(void); 1151 + void* WKPreferencesGetDefaultFixedFontSize(void); 1152 + void* WKPreferencesGetDefaultFontSize(void); 1153 + void* WKPreferencesGetDeferredCSSParserEnabled(void); 1154 + void* WKPreferencesGetDeveloperExtrasEnabled(void); 1155 + void* WKPreferencesGetDiagnosticLoggingEnabled(void); 1156 + void* WKPreferencesGetDirectoryUploadEnabled(void); 1157 + void* WKPreferencesGetDisplayContentsEnabled(void); 1158 + void* WKPreferencesGetDownloadAttributeEnabled(void); 1159 + void* WKPreferencesGetEditableLinkBehavior(void); 1160 + void* WKPreferencesGetEnableInheritURIQueryComponent(void); 1161 + void* WKPreferencesGetEncodingDetectorEnabled(void); 1162 + void* WKPreferencesGetEnumeratingAllNetworkInterfacesEnabled(void); 1163 + void* WKPreferencesGetFetchAPIEnabled(void); 1164 + void* WKPreferencesGetFetchAPIKeepAliveEnabled(void); 1165 + void* WKPreferencesGetFileAccessFromFileURLsAllowed(void); 1166 + void* WKPreferencesGetFontSmoothingLevel(void); 1167 + void* WKPreferencesGetForceFTPDirectoryListings(void); 1168 + void* WKPreferencesGetForceSoftwareWebGLRendering(void); 1169 + void* WKPreferencesGetFrameFlatteningEnabled(void); 1170 + void* WKPreferencesGetFullScreenEnabled(void); 1171 + void* WKPreferencesGetGamepadsEnabled(void); 1172 + void* WKPreferencesGetHTTPEquivEnabled(void); 1173 + void* WKPreferencesGetHiddenPageCSSAnimationSuspensionEnabled(void); 1174 + void* WKPreferencesGetHiddenPageDOMTimerThrottlingAutoIncreases(void); 1175 + void* WKPreferencesGetHiddenPageDOMTimerThrottlingEnabled(void); 1176 + void* WKPreferencesGetHixie76WebSocketProtocolEnabled(void); 1177 + void* WKPreferencesGetHyperlinkAuditingEnabled(void); 1178 + void* WKPreferencesGetICECandidateFilteringEnabled(void); 1179 + void* WKPreferencesGetIgnoreViewportScalingConstraints(void); 1180 + void* WKPreferencesGetImageControlsEnabled(void); 1181 + void* WKPreferencesGetInactiveMediaCaptureSteamRepromptIntervalInMinutes(void); 1182 + void* WKPreferencesGetIncrementalRenderingSuppressionTimeout(void); 1183 + void* WKPreferencesGetInlineMediaPlaybackRequiresPlaysInlineAttribute(void); 1184 + void* WKPreferencesGetInspectorAdditionsEnabled(void); 1185 + void* WKPreferencesGetInspectorUsesWebKitUserInterface(void); 1186 + void* WKPreferencesGetInteractiveFormValidationEnabled(void); 1187 + void* WKPreferencesGetIntersectionObserverEnabled(void); 1188 + void* WKPreferencesGetInvisibleMediaAutoplayPermitted(void); 1189 + void* WKPreferencesGetIsSecureContextAttributeEnabled(void); 1190 + void* WKPreferencesGetJavaEnabled(void); 1191 + void* WKPreferencesGetJavaEnabledForLocalFiles(void); 1192 + void* WKPreferencesGetJavaScriptCanAccessClipboard(void); 1193 + void* WKPreferencesGetJavaScriptCanOpenWindowsAutomatically(void); 1194 + void* WKPreferencesGetJavaScriptEnabled(void); 1195 + void* WKPreferencesGetJavaScriptMarkupEnabled(void); 1196 + void* WKPreferencesGetJavaScriptRuntimeFlags(void); 1197 + void* WKPreferencesGetLargeImageAsyncDecodingEnabled(void); 1198 + void* WKPreferencesGetLegacyEncryptedMediaAPIEnabled(void); 1199 + void* WKPreferencesGetLinkPreloadEnabled(void); 1200 + void* WKPreferencesGetLoadsImagesAutomatically(void); 1201 + void* WKPreferencesGetLoadsSiteIconsIgnoringImageLoadingPreference(void); 1202 + void* WKPreferencesGetLocalFileContentSniffingEnabled(void); 1203 + void* WKPreferencesGetLocalStorageEnabled(void); 1204 + void* WKPreferencesGetLogsPageMessagesToSystemConsoleEnabled(void); 1205 + void* WKPreferencesGetLongMousePressEnabled(void); 1206 + void* WKPreferencesGetMainContentUserGestureOverrideEnabled(void); 1207 + void* WKPreferencesGetMediaCapabilitiesEnabled(void); 1208 + void* WKPreferencesGetMediaCaptureRequiresSecureConnection(void); 1209 + void* WKPreferencesGetMediaControlsScaleWithPageZoom(void); 1210 + void* WKPreferencesGetMediaDevicesEnabled(void); 1211 + void* WKPreferencesGetMediaPlaybackAllowsInline(void); 1212 + void* WKPreferencesGetMediaPlaybackRequiresUserGesture(void); 1213 + void* WKPreferencesGetMediaPreloadingEnabled(void); 1214 + void* WKPreferencesGetMediaSourceEnabled(void); 1215 + void* WKPreferencesGetMediaStreamEnabled(void); 1216 + void* WKPreferencesGetMediaUserGestureInheritsFromDocument(void); 1217 + void* WKPreferencesGetMenuItemElementEnabled(void); 1218 + void* WKPreferencesGetMetaRefreshEnabled(void); 1219 + void* WKPreferencesGetMinimumFontSize(void); 1220 + void* WKPreferencesGetMinimumZoomFontSize(void); 1221 + void* WKPreferencesGetMockCaptureDevicesEnabled(void); 1222 + void* WKPreferencesGetMockScrollbarsEnabled(void); 1223 + void* WKPreferencesGetModernMediaControlsEnabled(void); 1224 + void* WKPreferencesGetNeedsSiteSpecificQuirks(void); 1225 + void* WKPreferencesGetNeedsStorageAccessFromFileURLsQuirk(void); 1226 + void* WKPreferencesGetNewBlockInsideInlineModelEnabled(void); 1227 + void* WKPreferencesGetNotificationsEnabled(void); 1228 + void* WKPreferencesGetOfflineWebApplicationCacheEnabled(void); 1229 + void* WKPreferencesGetPDFPluginEnabled(void); 1230 + void* WKPreferencesGetPageCacheEnabled(void); 1231 + void* WKPreferencesGetPageCacheSupportsPlugins(void); 1232 + void* WKPreferencesGetPageVisibilityBasedProcessSuppressionEnabled(void); 1233 + void* WKPreferencesGetPaginateDuringLayoutEnabled(void); 1234 + void* WKPreferencesGetPeerConnectionEnabled(void); 1235 + void* WKPreferencesGetPlugInSnapshottingEnabled(void); 1236 + void* WKPreferencesGetPluginsEnabled(void); 1237 + void* WKPreferencesGetPrimaryPlugInSnapshotDetectionEnabled(void); 1238 + void* WKPreferencesGetPrivateBrowsingEnabled(void); 1239 + void* WKPreferencesGetQTKitEnabled(void); 1240 + void* WKPreferencesGetRequestAnimationFrameEnabled(void); 1241 + void* WKPreferencesGetResourceTimingEnabled(void); 1242 + void* WKPreferencesGetResourceUsageOverlayVisible(void); 1243 + void* WKPreferencesGetScrollingPerformanceLoggingEnabled(void); 1244 + void* WKPreferencesGetSelectTrailingWhitespaceEnabled(void); 1245 + void* WKPreferencesGetSelectionPaintingWithoutSelectionGapsEnabled(void); 1246 + void* WKPreferencesGetServiceControlsEnabled(void); 1247 + void* WKPreferencesGetShouldAllowUserInstalledFonts(void); 1248 + void* WKPreferencesGetShouldConvertPositionStyleOnCopy(void); 1249 + void* WKPreferencesGetShouldDisplayCaptions(void); 1250 + void* WKPreferencesGetShouldDisplaySubtitles(void); 1251 + void* WKPreferencesGetShouldDisplayTextDescriptions(void); 1252 + void* WKPreferencesGetShouldPrintBackgrounds(void); 1253 + void* WKPreferencesGetShouldRespectImageOrientation(void); 1254 + void* WKPreferencesGetShouldSuppressKeyboardInputDuringProvisionalNavigation(void); 1255 + void* WKPreferencesGetShowsToolTipOverTruncatedText(void); 1256 + void* WKPreferencesGetShowsURLsInToolTipsEnabled(void); 1257 + void* WKPreferencesGetSimpleLineLayoutDebugBordersEnabled(void); 1258 + void* WKPreferencesGetSimpleLineLayoutEnabled(void); 1259 + void* WKPreferencesGetSmartInsertDeleteEnabled(void); 1260 + void* WKPreferencesGetSnapshotAllPlugIns(void); 1261 + void* WKPreferencesGetSpatialNavigationEnabled(void); 1262 + void* WKPreferencesGetStorageAccessAPIEnabled(void); 1263 + void* WKPreferencesGetStorageBlockingPolicy(void); 1264 + void* WKPreferencesGetSubpixelAntialiasedLayerTextEnabled(void); 1265 + void* WKPreferencesGetSubpixelCSSOMElementMetricsEnabled(void); 1266 + void* WKPreferencesGetSuppressesIncrementalRendering(void); 1267 + void* WKPreferencesGetTabToLinksEnabled(void); 1268 + void* WKPreferencesGetTabsToLinks(void); 1269 + void* WKPreferencesGetTelephoneNumberParsingEnabled(void); 1270 + void* WKPreferencesGetTextAreasAreResizable(void); 1271 + void* WKPreferencesGetTextAutosizingEnabled(void); 1272 + void* WKPreferencesGetThreadedScrollingEnabled(void); 1273 + void* WKPreferencesGetTiledScrollingIndicatorVisible(void); 1274 + void* WKPreferencesGetTypeID(void); 1275 + void* WKPreferencesGetUniversalAccessFromFileURLsAllowed(void); 1276 + void* WKPreferencesGetUseGiantTiles(void); 1277 + void* WKPreferencesGetUserInterfaceDirectionPolicy(void); 1278 + void* WKPreferencesGetUserTimingEnabled(void); 1279 + void* WKPreferencesGetVideoPlaybackRequiresUserGesture(void); 1280 + void* WKPreferencesGetViewGestureDebuggingEnabled(void); 1281 + void* WKPreferencesGetVisibleDebugOverlayRegions(void); 1282 + void* WKPreferencesGetWebAnimationsEnabled(void); 1283 + void* WKPreferencesGetWebArchiveDebugModeEnabled(void); 1284 + void* WKPreferencesGetWebAudioEnabled(void); 1285 + void* WKPreferencesGetWebAuthenticationEnabled(void); 1286 + void* WKPreferencesGetWebGLEnabled(void); 1287 + void* WKPreferencesGetWebRTCLegacyAPIEnabled(void); 1288 + void* WKPreferencesGetWebSecurityEnabled(void); 1289 + void* WKPreferencesGetXSSAuditorEnabled(void); 1290 + void* WKPreferencesResetTestRunnerOverrides(void); 1291 + void* WKPreferencesSetAVFoundationEnabled(void); 1292 + void* WKPreferencesSetAVFoundationNSURLSessionEnabled(void); 1293 + void* WKPreferencesSetAccelerated2DCanvasEnabled(void); 1294 + void* WKPreferencesSetAcceleratedCompositingEnabled(void); 1295 + void* WKPreferencesSetAcceleratedCompositingForOverflowScrollEnabled(void); 1296 + void* WKPreferencesSetAcceleratedDrawingEnabled(void); 1297 + void* WKPreferencesSetAccessibilityObjectModelEnabled(void); 1298 + void* WKPreferencesSetAggressiveTileRetentionEnabled(void); 1299 + void* WKPreferencesSetAllowMediaContentTypesRequiringHardwareSupportAsFallback(void); 1300 + void* WKPreferencesSetAllowsAirPlayForMediaPlayback(void); 1301 + void* WKPreferencesSetAllowsPictureInPictureMediaPlayback(void); 1302 + void* WKPreferencesSetAnimatedImageAsyncDecodingEnabled(void); 1303 + void* WKPreferencesSetAntialiasedFontDilationEnabled(void); 1304 + void* WKPreferencesSetApplePayCapabilityDisclosureAllowed(void); 1305 + void* WKPreferencesSetApplePayEnabled(void); 1306 + void* WKPreferencesSetApplicationChromeModeEnabled(void); 1307 + void* WKPreferencesSetArtificialPluginInitializationDelayEnabled(void); 1308 + void* WKPreferencesSetAsynchronousPluginInitializationEnabled(void); 1309 + void* WKPreferencesSetAsynchronousPluginInitializationEnabledForAllPlugins(void); 1310 + void* WKPreferencesSetAsynchronousSpellCheckingEnabled(void); 1311 + void* WKPreferencesSetAttachmentElementEnabled(void); 1312 + void* WKPreferencesSetAudioPlaybackRequiresUserGesture(void); 1313 + void* WKPreferencesSetAuthorAndUserStylesEnabled(void); 1314 + void* WKPreferencesSetAutostartOriginPlugInSnapshottingEnabled(void); 1315 + void* WKPreferencesSetBackspaceKeyNavigationEnabled(void); 1316 + void* WKPreferencesSetBeaconAPIEnabled(void); 1317 + void* WKPreferencesSetCSSAnimationTriggersEnabled(void); 1318 + void* WKPreferencesSetCanvasUsesAcceleratedDrawing(void); 1319 + void* WKPreferencesSetCaretBrowsingEnabled(void); 1320 + void* WKPreferencesSetCompositingBordersVisible(void); 1321 + void* WKPreferencesSetCompositingRepaintCountersVisible(void); 1322 + void* WKPreferencesSetCookieEnabled(void); 1323 + void* WKPreferencesSetCursiveFontFamily(void); 1324 + void* WKPreferencesSetCustomPasteboardDataEnabled(void); 1325 + void* WKPreferencesSetDNSPrefetchingEnabled(void); 1326 + void* WKPreferencesSetDOMPasteAllowed(void); 1327 + void* WKPreferencesSetDOMTimersThrottlingEnabled(void); 1328 + void* WKPreferencesSetDataTransferItemsEnabled(void); 1329 + void* WKPreferencesSetDatabasesEnabled(void); 1330 + void* WKPreferencesSetDefaultFixedFontSize(void); 1331 + void* WKPreferencesSetDefaultFontSize(void); 1332 + void* WKPreferencesSetDefaultTextEncodingName(void); 1333 + void* WKPreferencesSetDeferredCSSParserEnabled(void); 1334 + void* WKPreferencesSetDeveloperExtrasEnabled(void); 1335 + void* WKPreferencesSetDiagnosticLoggingEnabled(void); 1336 + void* WKPreferencesSetDirectoryUploadEnabled(void); 1337 + void* WKPreferencesSetDisplayContentsEnabled(void); 1338 + void* WKPreferencesSetDownloadAttributeEnabled(void); 1339 + void* WKPreferencesSetEditableLinkBehavior(void); 1340 + void* WKPreferencesSetEnableInheritURIQueryComponent(void); 1341 + void* WKPreferencesSetEncodingDetectorEnabled(void); 1342 + void* WKPreferencesSetEnumeratingAllNetworkInterfacesEnabled(void); 1343 + void* WKPreferencesSetFTPDirectoryTemplatePath(void); 1344 + void* WKPreferencesSetFantasyFontFamily(void); 1345 + void* WKPreferencesSetFetchAPIEnabled(void); 1346 + void* WKPreferencesSetFetchAPIKeepAliveEnabled(void); 1347 + void* WKPreferencesSetFileAccessFromFileURLsAllowed(void); 1348 + void* WKPreferencesSetFixedFontFamily(void); 1349 + void* WKPreferencesSetFontSmoothingLevel(void); 1350 + void* WKPreferencesSetForceFTPDirectoryListings(void); 1351 + void* WKPreferencesSetForceSoftwareWebGLRendering(void); 1352 + void* WKPreferencesSetFrameFlatteningEnabled(void); 1353 + void* WKPreferencesSetFullScreenEnabled(void); 1354 + void* WKPreferencesSetGamepadsEnabled(void); 1355 + void* WKPreferencesSetHTTPEquivEnabled(void); 1356 + void* WKPreferencesSetHiddenPageCSSAnimationSuspensionEnabled(void); 1357 + void* WKPreferencesSetHiddenPageDOMTimerThrottlingAutoIncreases(void); 1358 + void* WKPreferencesSetHiddenPageDOMTimerThrottlingEnabled(void); 1359 + void* WKPreferencesSetHixie76WebSocketProtocolEnabled(void); 1360 + void* WKPreferencesSetHyperlinkAuditingEnabled(void); 1361 + void* WKPreferencesSetICECandidateFilteringEnabled(void); 1362 + void* WKPreferencesSetIgnoreViewportScalingConstraints(void); 1363 + void* WKPreferencesSetImageControlsEnabled(void); 1364 + void* WKPreferencesSetInactiveMediaCaptureSteamRepromptIntervalInMinutes(void); 1365 + void* WKPreferencesSetIncrementalRenderingSuppressionTimeout(void); 1366 + void* WKPreferencesSetInlineMediaPlaybackRequiresPlaysInlineAttribute(void); 1367 + void* WKPreferencesSetInspectorAdditionsEnabled(void); 1368 + void* WKPreferencesSetInspectorUsesWebKitUserInterface(void); 1369 + void* WKPreferencesSetInteractiveFormValidationEnabled(void); 1370 + void* WKPreferencesSetIntersectionObserverEnabled(void); 1371 + void* WKPreferencesSetInvisibleMediaAutoplayPermitted(void); 1372 + void* WKPreferencesSetIsSecureContextAttributeEnabled(void); 1373 + void* WKPreferencesSetJavaEnabled(void); 1374 + void* WKPreferencesSetJavaEnabledForLocalFiles(void); 1375 + void* WKPreferencesSetJavaScriptCanAccessClipboard(void); 1376 + void* WKPreferencesSetJavaScriptCanOpenWindowsAutomatically(void); 1377 + void* WKPreferencesSetJavaScriptEnabled(void); 1378 + void* WKPreferencesSetJavaScriptMarkupEnabled(void); 1379 + void* WKPreferencesSetJavaScriptRuntimeFlags(void); 1380 + void* WKPreferencesSetLargeImageAsyncDecodingEnabled(void); 1381 + void* WKPreferencesSetLegacyEncryptedMediaAPIEnabled(void); 1382 + void* WKPreferencesSetLinkPreloadEnabled(void); 1383 + void* WKPreferencesSetLoadsImagesAutomatically(void); 1384 + void* WKPreferencesSetLoadsSiteIconsIgnoringImageLoadingPreference(void); 1385 + void* WKPreferencesSetLocalFileContentSniffingEnabled(void); 1386 + void* WKPreferencesSetLocalStorageEnabled(void); 1387 + void* WKPreferencesSetLogsPageMessagesToSystemConsoleEnabled(void); 1388 + void* WKPreferencesSetLongMousePressEnabled(void); 1389 + void* WKPreferencesSetMainContentUserGestureOverrideEnabled(void); 1390 + void* WKPreferencesSetMediaCapabilitiesEnabled(void); 1391 + void* WKPreferencesSetMediaCaptureRequiresSecureConnection(void); 1392 + void* WKPreferencesSetMediaContentTypesRequiringHardwareSupport(void); 1393 + void* WKPreferencesSetMediaControlsScaleWithPageZoom(void); 1394 + void* WKPreferencesSetMediaDevicesEnabled(void); 1395 + void* WKPreferencesSetMediaPlaybackAllowsInline(void); 1396 + void* WKPreferencesSetMediaPlaybackRequiresUserGesture(void); 1397 + void* WKPreferencesSetMediaPreloadingEnabled(void); 1398 + void* WKPreferencesSetMediaSourceEnabled(void); 1399 + void* WKPreferencesSetMediaStreamEnabled(void); 1400 + void* WKPreferencesSetMediaUserGestureInheritsFromDocument(void); 1401 + void* WKPreferencesSetMenuItemElementEnabled(void); 1402 + void* WKPreferencesSetMetaRefreshEnabled(void); 1403 + void* WKPreferencesSetMinimumFontSize(void); 1404 + void* WKPreferencesSetMinimumZoomFontSize(void); 1405 + void* WKPreferencesSetMockCaptureDevicesEnabled(void); 1406 + void* WKPreferencesSetMockScrollbarsEnabled(void); 1407 + void* WKPreferencesSetModernMediaControlsEnabled(void); 1408 + void* WKPreferencesSetNeedsSiteSpecificQuirks(void); 1409 + void* WKPreferencesSetNeedsStorageAccessFromFileURLsQuirk(void); 1410 + void* WKPreferencesSetNewBlockInsideInlineModelEnabled(void); 1411 + void* WKPreferencesSetNotificationsEnabled(void); 1412 + void* WKPreferencesSetOfflineWebApplicationCacheEnabled(void); 1413 + void* WKPreferencesSetPDFPluginEnabled(void); 1414 + void* WKPreferencesSetPageCacheEnabled(void); 1415 + void* WKPreferencesSetPageCacheSupportsPlugins(void); 1416 + void* WKPreferencesSetPageVisibilityBasedProcessSuppressionEnabled(void); 1417 + void* WKPreferencesSetPaginateDuringLayoutEnabled(void); 1418 + void* WKPreferencesSetPeerConnectionEnabled(void); 1419 + void* WKPreferencesSetPictographFontFamily(void); 1420 + void* WKPreferencesSetPlugInSnapshottingEnabled(void); 1421 + void* WKPreferencesSetPluginsEnabled(void); 1422 + void* WKPreferencesSetPrimaryPlugInSnapshotDetectionEnabled(void); 1423 + void* WKPreferencesSetPrivateBrowsingEnabled(void); 1424 + void* WKPreferencesSetQTKitEnabled(void); 1425 + void* WKPreferencesSetRequestAnimationFrameEnabled(void); 1426 + void* WKPreferencesSetResourceTimingEnabled(void); 1427 + void* WKPreferencesSetResourceUsageOverlayVisible(void); 1428 + void* WKPreferencesSetSansSerifFontFamily(void); 1429 + void* WKPreferencesSetScrollingPerformanceLoggingEnabled(void); 1430 + void* WKPreferencesSetSelectTrailingWhitespaceEnabled(void); 1431 + void* WKPreferencesSetSelectionPaintingWithoutSelectionGapsEnabled(void); 1432 + void* WKPreferencesSetSerifFontFamily(void); 1433 + void* WKPreferencesSetServiceControlsEnabled(void); 1434 + void* WKPreferencesSetShouldAllowUserInstalledFonts(void); 1435 + void* WKPreferencesSetShouldConvertPositionStyleOnCopy(void); 1436 + void* WKPreferencesSetShouldDisplayCaptions(void); 1437 + void* WKPreferencesSetShouldDisplaySubtitles(void); 1438 + void* WKPreferencesSetShouldDisplayTextDescriptions(void); 1439 + void* WKPreferencesSetShouldPrintBackgrounds(void); 1440 + void* WKPreferencesSetShouldRespectImageOrientation(void); 1441 + void* WKPreferencesSetShouldSuppressKeyboardInputDuringProvisionalNavigation(void); 1442 + void* WKPreferencesSetShowsToolTipOverTruncatedText(void); 1443 + void* WKPreferencesSetShowsURLsInToolTipsEnabled(void); 1444 + void* WKPreferencesSetSimpleLineLayoutDebugBordersEnabled(void); 1445 + void* WKPreferencesSetSimpleLineLayoutEnabled(void); 1446 + void* WKPreferencesSetSmartInsertDeleteEnabled(void); 1447 + void* WKPreferencesSetSnapshotAllPlugIns(void); 1448 + void* WKPreferencesSetSpatialNavigationEnabled(void); 1449 + void* WKPreferencesSetStandardFontFamily(void); 1450 + void* WKPreferencesSetStorageAccessAPIEnabled(void); 1451 + void* WKPreferencesSetStorageBlockingPolicy(void); 1452 + void* WKPreferencesSetSubpixelAntialiasedLayerTextEnabled(void); 1453 + void* WKPreferencesSetSubpixelCSSOMElementMetricsEnabled(void); 1454 + void* WKPreferencesSetSuppressesIncrementalRendering(void); 1455 + void* WKPreferencesSetTabToLinksEnabled(void); 1456 + void* WKPreferencesSetTabsToLinks(void); 1457 + void* WKPreferencesSetTelephoneNumberParsingEnabled(void); 1458 + void* WKPreferencesSetTextAreasAreResizable(void); 1459 + void* WKPreferencesSetTextAutosizingEnabled(void); 1460 + void* WKPreferencesSetThreadedScrollingEnabled(void); 1461 + void* WKPreferencesSetTiledScrollingIndicatorVisible(void); 1462 + void* WKPreferencesSetUniversalAccessFromFileURLsAllowed(void); 1463 + void* WKPreferencesSetUseGiantTiles(void); 1464 + void* WKPreferencesSetUseLegacyTextAlignPositionedElementBehavior(void); 1465 + void* WKPreferencesSetUserInterfaceDirectionPolicy(void); 1466 + void* WKPreferencesSetUserTimingEnabled(void); 1467 + void* WKPreferencesSetVideoPlaybackRequiresUserGesture(void); 1468 + void* WKPreferencesSetViewGestureDebuggingEnabled(void); 1469 + void* WKPreferencesSetVisibleDebugOverlayRegions(void); 1470 + void* WKPreferencesSetWebAnimationsEnabled(void); 1471 + void* WKPreferencesSetWebArchiveDebugModeEnabled(void); 1472 + void* WKPreferencesSetWebAudioEnabled(void); 1473 + void* WKPreferencesSetWebAuthenticationEnabled(void); 1474 + void* WKPreferencesSetWebGLEnabled(void); 1475 + void* WKPreferencesSetWebRTCLegacyAPIEnabled(void); 1476 + void* WKPreferencesSetWebSecurityEnabled(void); 1477 + void* WKPreferencesSetXSSAuditorEnabled(void); 1478 + void* WKPreferencesUseLegacyTextAlignPositionedElementBehavior(void); 1479 + void* WKProtectionSpaceCopyHost(void); 1480 + void* WKProtectionSpaceCopyNSURLProtectionSpace(void); 1481 + void* WKProtectionSpaceCopyRealm(void); 1482 + void* WKProtectionSpaceGetAuthenticationScheme(void); 1483 + void* WKProtectionSpaceGetIsProxy(void); 1484 + void* WKProtectionSpaceGetPort(void); 1485 + void* WKProtectionSpaceGetReceivesCredentialSecurely(void); 1486 + void* WKProtectionSpaceGetServerType(void); 1487 + void* WKProtectionSpaceGetTypeID(void); 1488 + void* WKRectCreate(void); 1489 + void* WKRectGetTypeID(void); 1490 + void* WKRectGetValue(void); 1491 + void* WKRelease(void); 1492 + void* WKRenderLayerCopyElementID(void); 1493 + void* WKRenderLayerCopyElementTagName(void); 1494 + void* WKRenderLayerCopyRendererName(void); 1495 + void* WKRenderLayerGetAbsoluteBounds(void); 1496 + void* WKRenderLayerGetBackingStoreMemoryEstimate(void); 1497 + void* WKRenderLayerGetCompositingLayerType(void); 1498 + void* WKRenderLayerGetElementClassNames(void); 1499 + void* WKRenderLayerGetFrameContentsLayer(void); 1500 + void* WKRenderLayerGetNegativeZOrderList(void); 1501 + void* WKRenderLayerGetNormalFlowList(void); 1502 + void* WKRenderLayerGetPositiveZOrderList(void); 1503 + void* WKRenderLayerGetRenderer(void); 1504 + void* WKRenderLayerGetTypeID(void); 1505 + void* WKRenderLayerIsClipped(void); 1506 + void* WKRenderLayerIsClipping(void); 1507 + void* WKRenderLayerIsReflection(void); 1508 + void* WKRenderObjectCopyElementID(void); 1509 + void* WKRenderObjectCopyElementTagName(void); 1510 + void* WKRenderObjectCopyName(void); 1511 + void* WKRenderObjectCopyTextSnippet(void); 1512 + void* WKRenderObjectGetAbsolutePosition(void); 1513 + void* WKRenderObjectGetChildren(void); 1514 + void* WKRenderObjectGetElementClassNames(void); 1515 + void* WKRenderObjectGetFrameRect(void); 1516 + void* WKRenderObjectGetTextLength(void); 1517 + void* WKRenderObjectGetTypeID(void); 1518 + void* WKResourceCacheManagerClearCacheForAllOrigins(void); 1519 + void* WKResourceCacheManagerClearCacheForOrigin(void); 1520 + void* WKResourceCacheManagerGetCacheOrigins(void); 1521 + void* WKResourceCacheManagerGetTypeID(void); 1522 + void* WKRetain(void); 1523 + void* WKSecurityOriginCopyDatabaseIdentifier(void); 1524 + void* WKSecurityOriginCopyHost(void); 1525 + void* WKSecurityOriginCopyProtocol(void); 1526 + void* WKSecurityOriginCopyToString(void); 1527 + void* WKSecurityOriginCreate(void); 1528 + void* WKSecurityOriginCreateFromDatabaseIdentifier(void); 1529 + void* WKSecurityOriginCreateFromString(void); 1530 + void* WKSecurityOriginGetPort(void); 1531 + void* WKSecurityOriginGetTypeID(void); 1532 + void* WKSerializedScriptValueCreate(void); 1533 + void* WKSerializedScriptValueDeserialize(void); 1534 + void* WKSerializedScriptValueGetTypeID(void); 1535 + void* WKSessionStateCopyData(void); 1536 + void* WKSessionStateCreateFromData(void); 1537 + void* WKSessionStateGetTypeID(void); 1538 + void* WKSizeCreate(void); 1539 + void* WKSizeGetTypeID(void); 1540 + void* WKSizeGetValue(void); 1541 + void* WKStringCopyCFString(void); 1542 + void* WKStringCopyJSString(void); 1543 + void* WKStringCreateWithCFString(void); 1544 + void* WKStringCreateWithJSString(void); 1545 + void* WKStringCreateWithUTF8CString(void); 1546 + void* WKStringGetCharacters(void); 1547 + void* WKStringGetLength(void); 1548 + void* WKStringGetMaximumUTF8CStringSize(void); 1549 + void* WKStringGetTypeID(void); 1550 + void* WKStringGetUTF8CString(void); 1551 + void* WKStringGetUTF8CStringNonStrict(void); 1552 + void* WKStringIsEmpty(void); 1553 + void* WKStringIsEqual(void); 1554 + void* WKStringIsEqualToUTF8CString(void); 1555 + void* WKStringIsEqualToUTF8CStringIgnoringCase(void); 1556 + void* WKTextCheckerSetTestingMode(void); 1557 + void* WKUInt64Create(void); 1558 + void* WKUInt64GetTypeID(void); 1559 + void* WKUInt64GetValue(void); 1560 + void* WKURLCopyCFURL(void); 1561 + void* WKURLCopyHostName(void); 1562 + void* WKURLCopyLastPathComponent(void); 1563 + void* WKURLCopyPath(void); 1564 + void* WKURLCopyScheme(void); 1565 + void* WKURLCopyString(void); 1566 + void* WKURLCreateWithBaseURL(void); 1567 + void* WKURLCreateWithCFURL(void); 1568 + void* WKURLCreateWithUTF8CString(void); 1569 + void* WKURLGetTypeID(void); 1570 + void* WKURLIsEqual(void); 1571 + void* WKURLRequestCopyFirstPartyForCookies(void); 1572 + void* WKURLRequestCopyHTTPMethod(void); 1573 + void* WKURLRequestCopyNSURLRequest(void); 1574 + void* WKURLRequestCopySettingHTTPBody(void); 1575 + void* WKURLRequestCopyURL(void); 1576 + void* WKURLRequestCreateWithNSURLRequest(void); 1577 + void* WKURLRequestCreateWithWKURL(void); 1578 + void* WKURLRequestGetTypeID(void); 1579 + void* WKURLRequestSetDefaultTimeoutInterval(void); 1580 + void* WKURLResponseCopyMIMEType(void); 1581 + void* WKURLResponseCopyNSURLResponse(void); 1582 + void* WKURLResponseCopySuggestedFilename(void); 1583 + void* WKURLResponseCopyURL(void); 1584 + void* WKURLResponseCreateWithNSURLResponse(void); 1585 + void* WKURLResponseGetExpectedContentLength(void); 1586 + void* WKURLResponseGetTypeID(void); 1587 + void* WKURLResponseHTTPStatusCode(void); 1588 + void* WKURLResponseIsAttachment(void); 1589 + void* WKUserContentControllerAddUserContentFilter(void); 1590 + void* WKUserContentControllerAddUserScript(void); 1591 + void* WKUserContentControllerCopyUserScripts(void); 1592 + void* WKUserContentControllerCreate(void); 1593 + void* WKUserContentControllerGetTypeID(void); 1594 + void* WKUserContentControllerRemoveAllUserContentFilters(void); 1595 + void* WKUserContentControllerRemoveAllUserScripts(void); 1596 + void* WKUserContentExtensionStoreGetTypeID(void); 1597 + void* WKUserContentURLPatternCopyHost(void); 1598 + void* WKUserContentURLPatternCopyScheme(void); 1599 + void* WKUserContentURLPatternCreate(void); 1600 + void* WKUserContentURLPatternGetTypeID(void); 1601 + void* WKUserContentURLPatternIsValid(void); 1602 + void* WKUserContentURLPatternMatchesSubdomains(void); 1603 + void* WKUserContentURLPatternMatchesURL(void); 1604 + void* WKUserMediaPermissionCheckGetTypeID(void); 1605 + void* WKUserMediaPermissionCheckSetUserMediaAccessInfo(void); 1606 + void* WKUserMediaPermissionRequestAllow(void); 1607 + void* WKUserMediaPermissionRequestAudioDeviceUIDs(void); 1608 + void* WKUserMediaPermissionRequestDeny(void); 1609 + void* WKUserMediaPermissionRequestGetTypeID(void); 1610 + void* WKUserMediaPermissionRequestVideoDeviceUIDs(void); 1611 + void* WKUserScriptCopySource(void); 1612 + void* WKUserScriptCreateWithSource(void); 1613 + void* WKUserScriptGetInjectionTime(void); 1614 + void* WKUserScriptGetMainFrameOnly(void); 1615 + void* WKUserScriptGetTypeID(void); 1616 + void* WKWebArchiveCopyData(void); 1617 + void* WKWebArchiveCopyMainResource(void); 1618 + void* WKWebArchiveCopySubframeArchives(void); 1619 + void* WKWebArchiveCopySubresources(void); 1620 + void* WKWebArchiveCreate(void); 1621 + void* WKWebArchiveCreateFromRange(void); 1622 + void* WKWebArchiveCreateWithData(void); 1623 + void* WKWebArchiveGetTypeID(void); 1624 + void* WKWebArchiveResourceCopyData(void); 1625 + void* WKWebArchiveResourceCopyMIMEType(void); 1626 + void* WKWebArchiveResourceCopyTextEncoding(void); 1627 + void* WKWebArchiveResourceCopyURL(void); 1628 + void* WKWebArchiveResourceCreate(void); 1629 + void* WKWebArchiveResourceGetTypeID(void); 1630 + void* WKWebsiteDataStoreCreateNonPersistentDataStore(void); 1631 + void* WKWebsiteDataStoreGetDefaultDataStore(void); 1632 + void* WKWebsiteDataStoreGetFetchCacheOrigins(void); 1633 + void* WKWebsiteDataStoreGetFetchCacheSizeForOrigin(void); 1634 + void* WKWebsiteDataStoreGetResourceLoadStatisticsEnabled(void); 1635 + void* WKWebsiteDataStoreGetTypeID(void); 1636 + void* WKWebsiteDataStoreIsStatisticsGrandfathered(void); 1637 + void* WKWebsiteDataStoreIsStatisticsHasHadUserInteraction(void); 1638 + void* WKWebsiteDataStoreIsStatisticsPrevalentResource(void); 1639 + void* WKWebsiteDataStoreIsStatisticsRegisteredAsRedirectingTo(void); 1640 + void* WKWebsiteDataStoreIsStatisticsRegisteredAsSubFrameUnder(void); 1641 + void* WKWebsiteDataStoreRemoveAllFetchCaches(void); 1642 + void* WKWebsiteDataStoreRemoveAllIndexedDatabases(void); 1643 + void* WKWebsiteDataStoreRemoveAllServiceWorkerRegistrations(void); 1644 + void* WKWebsiteDataStoreRemoveFetchCacheForOrigin(void); 1645 + void* WKWebsiteDataStoreSetResourceLoadStatisticsEnabled(void); 1646 + void* WKWebsiteDataStoreSetStatisticsGrandfathered(void); 1647 + void* WKWebsiteDataStoreSetStatisticsGrandfatheringTime(void); 1648 + void* WKWebsiteDataStoreSetStatisticsHasHadNonRecentUserInteraction(void); 1649 + void* WKWebsiteDataStoreSetStatisticsHasHadUserInteraction(void); 1650 + void* WKWebsiteDataStoreSetStatisticsLastSeen(void); 1651 + void* WKWebsiteDataStoreSetStatisticsMaxStatisticsEntries(void); 1652 + void* WKWebsiteDataStoreSetStatisticsMinimumTimeBetweenDataRecordsRemoval(void); 1653 + void* WKWebsiteDataStoreSetStatisticsNotifyPagesWhenDataRecordsWereScanned(void); 1654 + void* WKWebsiteDataStoreSetStatisticsNotifyPagesWhenTelemetryWasCaptured(void); 1655 + void* WKWebsiteDataStoreSetStatisticsPrevalentResource(void); 1656 + void* WKWebsiteDataStoreSetStatisticsPruneEntriesDownTo(void); 1657 + void* WKWebsiteDataStoreSetStatisticsShouldClassifyResourcesBeforeDataRecordsRemoval(void); 1658 + void* WKWebsiteDataStoreSetStatisticsShouldPartitionCookiesForHost(void); 1659 + void* WKWebsiteDataStoreSetStatisticsSubframeUnderTopFrameOrigin(void); 1660 + void* WKWebsiteDataStoreSetStatisticsSubresourceUnderTopFrameOrigin(void); 1661 + void* WKWebsiteDataStoreSetStatisticsSubresourceUniqueRedirectTo(void); 1662 + void* WKWebsiteDataStoreSetStatisticsTimeToLiveCookiePartitionFree(void); 1663 + void* WKWebsiteDataStoreSetStatisticsTimeToLiveUserInteraction(void); 1664 + void* WKWebsiteDataStoreStatisticsClearInMemoryAndPersistentStore(void); 1665 + void* WKWebsiteDataStoreStatisticsClearInMemoryAndPersistentStoreModifiedSinceHours(void); 1666 + void* WKWebsiteDataStoreStatisticsClearThroughWebsiteDataRemoval(void); 1667 + void* WKWebsiteDataStoreStatisticsProcessStatisticsAndDataRecords(void); 1668 + void* WKWebsiteDataStoreStatisticsResetToConsistentState(void); 1669 + void* WKWebsiteDataStoreStatisticsSubmitTelemetry(void); 1670 + void* WKWebsiteDataStoreStatisticsUpdateCookiePartitioning(void); 1671 + void* WKWebsitePoliciesCopyCustomHeaderFields(void); 1672 + void* WKWebsitePoliciesCreate(void); 1673 + void* WKWebsitePoliciesGetAllowedAutoplayQuirks(void); 1674 + void* WKWebsitePoliciesGetAutoplayPolicy(void); 1675 + void* WKWebsitePoliciesGetContentBlockersEnabled(void); 1676 + void* WKWebsitePoliciesGetDataStore(void); 1677 + void* WKWebsitePoliciesGetTypeID(void); 1678 + void* WKWebsitePoliciesSetAllowedAutoplayQuirks(void); 1679 + void* WKWebsitePoliciesSetAutoplayPolicy(void); 1680 + void* WKWebsitePoliciesSetContentBlockersEnabled(void); 1681 + void* WKWebsitePoliciesSetCustomHeaderFields(void); 1682 + void* WKWebsitePoliciesSetDataStore(void); 1683 + void* WKWindowFeaturesGetTypeID(void); 1684 + void* WebContentServiceInitializer(void); 1685 + void* _WKSetCrashReportApplicationSpecificInformation(void); 1686 + void* _ZN6WebKit20EnvironmentUtilities27stripValuesEndingWithStringEPKcS2_(void); 1687 + void* _ZN6WebKit44setCrashReportApplicationSpecificInformationEPK10__CFString(void); 1688 + 1689 + #endif
+24
src/WebKit/include/WebKit/WebViewImplDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol WebViewImplDelegate 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKActivatedElementInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKActivatedElementInfo : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKApplicationManifest.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKApplicationManifest : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKAttachment.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKAttachment : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKAttachmentDisplayOptions.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKAttachmentDisplayOptions : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKAutomationSession.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKAutomationSession : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKAutomationSessionConfiguration.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKAutomationSessionConfiguration : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKContextMenuElementInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKContextMenuElementInfo : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKDownload.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKDownload : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKErrorRecoveryAttempting.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol _WKErrorRecoveryAttempting 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKExperimentalFeature.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKExperimentalFeature : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKFrameHandle.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKFrameHandle : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKHitTestResult.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKHitTestResult : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKLinkIconParameters.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKLinkIconParameters : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKObservablePageState.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol _WKObservablePageState 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKProcessPoolConfiguration.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKProcessPoolConfiguration : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKRemoteObjectInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKRemoteObjectInterface : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKRemoteObjectRegistry.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKRemoteObjectRegistry : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKRemoteWebInspectorViewController.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKRemoteWebInspectorViewController : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKSessionState.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKSessionState : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKThumbnailView.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKThumbnailView : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKUserContentExtensionStore.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKUserContentExtensionStore : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKUserContentFilter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKUserContentFilter : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKUserContentWorld.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKUserContentWorld : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKUserInitiatedAction.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKUserInitiatedAction : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKUserStyleSheet.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKUserStyleSheet : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKVisitedLinkStore.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKVisitedLinkStore : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKWebsiteDataSize.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKWebsiteDataSize : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKWebsiteDataStore.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKWebsiteDataStore : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKWebsiteDataStoreConfiguration.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKWebsiteDataStoreConfiguration : NSObject 23 + 24 + @end
+24
src/WebKit/include/WebKit/_WKWebsitePolicies.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _WKWebsitePolicies : NSObject 23 + 24 + @end
+32
src/WebKit/src/WKAccessibilitySettingsObserver.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKAccessibilitySettingsObserver.h> 21 + 22 + @implementation WKAccessibilitySettingsObserver 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKAccessibilityWebPageObject.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKAccessibilityWebPageObject.h> 21 + 22 + @implementation WKAccessibilityWebPageObject 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKAccessibilityWebPageObjectBase.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKAccessibilityWebPageObjectBase.h> 21 + 22 + @implementation WKAccessibilityWebPageObjectBase 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKAnimationController.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKAnimationController.h> 21 + 22 + @implementation WKAnimationController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKAnimationDelegate.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKAnimationDelegate.h> 21 + 22 + @implementation WKAnimationDelegate 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKBackForwardList.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKBackForwardList.h> 21 + 22 + @implementation WKBackForwardList 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKBackForwardListItem.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKBackForwardListItem.h> 21 + 22 + @implementation WKBackForwardListItem 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKBrowsingContextController.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKBrowsingContextController.h> 21 + 22 + @implementation WKBrowsingContextController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKBrowsingContextGroup.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKBrowsingContextGroup.h> 21 + 22 + @implementation WKBrowsingContextGroup 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKBrowsingContextHandle.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKBrowsingContextHandle.h> 21 + 22 + @implementation WKBrowsingContextHandle 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKConnection.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKConnection.h> 21 + 22 + @implementation WKConnection 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKContentRuleList.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKContentRuleList.h> 21 + 22 + @implementation WKContentRuleList 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKContentRuleListStore.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKContentRuleListStore.h> 21 + 22 + @implementation WKContentRuleListStore 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKCustomProtocol.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKCustomProtocol.h> 21 + 22 + @implementation WKCustomProtocol 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKCustomProtocolLoader.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKCustomProtocolLoader.h> 21 + 22 + @implementation WKCustomProtocolLoader 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKDOMDocument.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKDOMDocument.h> 21 + 22 + @implementation WKDOMDocument 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKDOMElement.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKDOMElement.h> 21 + 22 + @implementation WKDOMElement 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKDOMNode.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKDOMNode.h> 21 + 22 + @implementation WKDOMNode 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKDOMRange.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKDOMRange.h> 21 + 22 + @implementation WKDOMRange 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKDOMText.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKDOMText.h> 21 + 22 + @implementation WKDOMText 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKDOMTextIterator.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKDOMTextIterator.h> 21 + 22 + @implementation WKDOMTextIterator 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKEditCommandObjC.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKEditCommandObjC.h> 21 + 22 + @implementation WKEditCommandObjC 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKEditorUndoTargetObjC.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKEditorUndoTargetObjC.h> 21 + 22 + @implementation WKEditorUndoTargetObjC 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKFlippedView.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKFlippedView.h> 21 + 22 + @implementation WKFlippedView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKFrameInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKFrameInfo.h> 21 + 22 + @implementation WKFrameInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKFullKeyboardAccessWatcher.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKFullKeyboardAccessWatcher.h> 21 + 22 + @implementation WKFullKeyboardAccessWatcher 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKFullScreenWindowController.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKFullScreenWindowController.h> 21 + 22 + @implementation WKFullScreenWindowController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKHTTPCookieStore.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKHTTPCookieStore.h> 21 + 22 + @implementation WKHTTPCookieStore 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKImmediateActionController.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKImmediateActionController.h> 21 + 22 + @implementation WKImmediateActionController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKInspectorViewController.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKInspectorViewController.h> 21 + 22 + @implementation WKInspectorViewController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKInspectorWKWebView.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKInspectorWKWebView.h> 21 + 22 + @implementation WKInspectorWKWebView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKLayerHostView.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKLayerHostView.h> 21 + 22 + @implementation WKLayerHostView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKMenuTarget.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKMenuTarget.h> 21 + 22 + @implementation WKMenuTarget 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNSArray.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNSArray.h> 21 + 22 + @implementation WKNSArray 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNSData.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNSData.h> 21 + 22 + @implementation WKNSData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNSDictionary.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNSDictionary.h> 21 + 22 + @implementation WKNSDictionary 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNSError.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNSError.h> 21 + 22 + @implementation WKNSError 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNSNumber.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNSNumber.h> 21 + 22 + @implementation WKNSNumber 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNSString.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNSString.h> 21 + 22 + @implementation WKNSString 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNSURL.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNSURL.h> 21 + 22 + @implementation WKNSURL 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNSURLAuthenticationChallenge.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNSURLAuthenticationChallenge.h> 21 + 22 + @implementation WKNSURLAuthenticationChallenge 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNSURLAuthenticationChallengeSender.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNSURLAuthenticationChallengeSender.h> 21 + 22 + @implementation WKNSURLAuthenticationChallengeSender 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNSURLRequest.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNSURLRequest.h> 21 + 22 + @implementation WKNSURLRequest 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNavigation.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNavigation.h> 21 + 22 + @implementation WKNavigation 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNavigationAction.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNavigationAction.h> 21 + 22 + @implementation WKNavigationAction 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNavigationData.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNavigationData.h> 21 + 22 + @implementation WKNavigationData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNavigationResponse.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNavigationResponse.h> 21 + 22 + @implementation WKNavigationResponse 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKNetworkSessionDelegate.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKNetworkSessionDelegate.h> 21 + 22 + @implementation WKNetworkSessionDelegate 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKObject.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKObject.h> 21 + 22 + @implementation WKObject 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKObservablePageState.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKObservablePageState.h> 21 + 22 + @implementation WKObservablePageState 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKOpenPanelParameters.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKOpenPanelParameters.h> 21 + 22 + @implementation WKOpenPanelParameters 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKPDFLayerControllerDelegate.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKPDFLayerControllerDelegate.h> 21 + 22 + @implementation WKPDFLayerControllerDelegate 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKPDFPluginAccessibilityObject.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKPDFPluginAccessibilityObject.h> 21 + 22 + @implementation WKPDFPluginAccessibilityObject 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKPDFPluginScrollbarLayer.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKPDFPluginScrollbarLayer.h> 21 + 22 + @implementation WKPDFPluginScrollbarLayer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKPaymentAuthorizationViewControllerDelegate.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKPaymentAuthorizationViewControllerDelegate.h> 21 + 22 + @implementation WKPaymentAuthorizationViewControllerDelegate 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKPlaceholderModalWindow.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKPlaceholderModalWindow.h> 21 + 22 + @implementation WKPlaceholderModalWindow 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKPreferences.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKPreferences.h> 21 + 22 + @implementation WKPreferences 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKPrintingView.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKPrintingView.h> 21 + 22 + @implementation WKPrintingView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKProcessGroup.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKProcessGroup.h> 21 + 22 + @implementation WKProcessGroup 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKProcessPool.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKProcessPool.h> 21 + 22 + @implementation WKProcessPool 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKReloadFrameErrorRecoveryAttempter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKReloadFrameErrorRecoveryAttempter.h> 21 + 22 + @implementation WKReloadFrameErrorRecoveryAttempter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKRemoteObject.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKRemoteObject.h> 21 + 22 + @implementation WKRemoteObject 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKRemoteObjectDecoder.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKRemoteObjectDecoder.h> 21 + 22 + @implementation WKRemoteObjectDecoder 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKRemoteObjectEncoder.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKRemoteObjectEncoder.h> 21 + 22 + @implementation WKRemoteObjectEncoder 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKRemoteWebInspectorProxyObjCAdapter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKRemoteWebInspectorProxyObjCAdapter.h> 21 + 22 + @implementation WKRemoteWebInspectorProxyObjCAdapter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKResponderChainSink.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKResponderChainSink.h> 21 + 22 + @implementation WKResponderChainSink 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKScriptMessage.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKScriptMessage.h> 21 + 22 + @implementation WKScriptMessage 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKSecurityOrigin.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKSecurityOrigin.h> 21 + 22 + @implementation WKSecurityOrigin 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKSelectionHandlerWrapper.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKSelectionHandlerWrapper.h> 21 + 22 + @implementation WKSelectionHandlerWrapper 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKSharingServicePickerDelegate.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKSharingServicePickerDelegate.h> 21 + 22 + @implementation WKSharingServicePickerDelegate 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKSnapshotConfiguration.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKSnapshotConfiguration.h> 21 + 22 + @implementation WKSnapshotConfiguration 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKSwipeCancellationTracker.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKSwipeCancellationTracker.h> 21 + 22 + @implementation WKSwipeCancellationTracker 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKTextFinderClient.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKTextFinderClient.h> 21 + 22 + @implementation WKTextFinderClient 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKTextFinderMatch.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKTextFinderMatch.h> 21 + 22 + @implementation WKTextFinderMatch 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKTextInputPanel.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKTextInputPanel.h> 21 + 22 + @implementation WKTextInputPanel 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKTextInputView.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKTextInputView.h> 21 + 22 + @implementation WKTextInputView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKTextInputWindowController.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKTextInputWindowController.h> 21 + 22 + @implementation WKTextInputWindowController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKTextListTouchBarViewController.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKTextListTouchBarViewController.h> 21 + 22 + @implementation WKTextListTouchBarViewController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKTextTouchBarItemController.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKTextTouchBarItemController.h> 21 + 22 + @implementation WKTextTouchBarItemController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKTypeRefWrapper.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKTypeRefWrapper.h> 21 + 22 + @implementation WKTypeRefWrapper 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKURLSchemeTaskImpl.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKURLSchemeTaskImpl.h> 21 + 22 + @implementation WKURLSchemeTaskImpl 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKUserContentController.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKUserContentController.h> 21 + 22 + @implementation WKUserContentController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKUserDataWrapper.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKUserDataWrapper.h> 21 + 22 + @implementation WKUserDataWrapper 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKUserScript.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKUserScript.h> 21 + 22 + @implementation WKUserScript 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKView.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKView.h> 21 + 22 + @implementation WKView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKViewData.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKViewData.h> 21 + 22 + @implementation WKViewData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKViewDynamicSizeComputedFromMinimumDocumentSizeLayoutStrategy.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKViewDynamicSizeComputedFromMinimumDocumentSizeLayoutStrategy.h> 21 + 22 + @implementation WKViewDynamicSizeComputedFromMinimumDocumentSizeLayoutStrategy 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKViewDynamicSizeComputedFromViewScaleLayoutStrategy.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKViewDynamicSizeComputedFromViewScaleLayoutStrategy.h> 21 + 22 + @implementation WKViewDynamicSizeComputedFromViewScaleLayoutStrategy 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKViewFixedSizeLayoutStrategy.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKViewFixedSizeLayoutStrategy.h> 21 + 22 + @implementation WKViewFixedSizeLayoutStrategy 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKViewLayoutStrategy.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKViewLayoutStrategy.h> 21 + 22 + @implementation WKViewLayoutStrategy 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKViewViewSizeLayoutStrategy.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKViewViewSizeLayoutStrategy.h> 21 + 22 + @implementation WKViewViewSizeLayoutStrategy 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWebInspectorProxyObjCAdapter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWebInspectorProxyObjCAdapter.h> 21 + 22 + @implementation WKWebInspectorProxyObjCAdapter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWebProcessBundleParameters.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWebProcessBundleParameters.h> 21 + 22 + @implementation WKWebProcessBundleParameters 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWebProcessPlugInBrowserContextController.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWebProcessPlugInBrowserContextController.h> 21 + 22 + @implementation WKWebProcessPlugInBrowserContextController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWebProcessPlugInController.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWebProcessPlugInController.h> 21 + 22 + @implementation WKWebProcessPlugInController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWebProcessPlugInFrame.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWebProcessPlugInFrame.h> 21 + 22 + @implementation WKWebProcessPlugInFrame 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWebProcessPlugInHitTestResult.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWebProcessPlugInHitTestResult.h> 21 + 22 + @implementation WKWebProcessPlugInHitTestResult 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWebProcessPlugInNodeHandle.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWebProcessPlugInNodeHandle.h> 21 + 22 + @implementation WKWebProcessPlugInNodeHandle 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWebProcessPlugInPageGroup.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWebProcessPlugInPageGroup.h> 21 + 22 + @implementation WKWebProcessPlugInPageGroup 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWebProcessPlugInRangeHandle.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWebProcessPlugInRangeHandle.h> 21 + 22 + @implementation WKWebProcessPlugInRangeHandle 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWebProcessPlugInScriptWorld.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWebProcessPlugInScriptWorld.h> 21 + 22 + @implementation WKWebProcessPlugInScriptWorld 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWebView.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWebView.h> 21 + 22 + @implementation WKWebView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWebViewConfiguration.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWebViewConfiguration.h> 21 + 22 + @implementation WKWebViewConfiguration 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWebsiteDataRecord.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWebsiteDataRecord.h> 21 + 22 + @implementation WKWebsiteDataRecord 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWebsiteDataStore.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWebsiteDataStore.h> 21 + 22 + @implementation WKWebsiteDataStore 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWindowFeatures.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWindowFeatures.h> 21 + 22 + @implementation WKWindowFeatures 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/WKWindowVisibilityObserver.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/WKWindowVisibilityObserver.h> 21 + 22 + @implementation WKWindowVisibilityObserver 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+7495
src/WebKit/src/WebKit.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + 21 + #include <WebKit/WebKit.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + 25 + static int verbose = 0; 26 + 27 + __attribute__((constructor)) 28 + static void initme(void) { 29 + verbose = getenv("STUB_VERBOSE") != NULL; 30 + } 31 + 32 + void* DatabaseServiceInitializer(void) { 33 + if (verbose) puts("STUB: DatabaseServiceInitializer called"); 34 + return NULL; 35 + } 36 + 37 + void* NetworkServiceInitializer(void) { 38 + if (verbose) puts("STUB: NetworkServiceInitializer called"); 39 + return NULL; 40 + } 41 + 42 + void* PluginServiceInitializer(void) { 43 + if (verbose) puts("STUB: PluginServiceInitializer called"); 44 + return NULL; 45 + } 46 + 47 + void* WKAccessibilityEnableEnhancedAccessibility(void) { 48 + if (verbose) puts("STUB: WKAccessibilityEnableEnhancedAccessibility called"); 49 + return NULL; 50 + } 51 + 52 + void* WKAccessibilityEnhancedAccessibilityEnabled(void) { 53 + if (verbose) puts("STUB: WKAccessibilityEnhancedAccessibilityEnabled called"); 54 + return NULL; 55 + } 56 + 57 + void* WKAccessibilityFocusedObject(void) { 58 + if (verbose) puts("STUB: WKAccessibilityFocusedObject called"); 59 + return NULL; 60 + } 61 + 62 + void* WKAccessibilityRootObject(void) { 63 + if (verbose) puts("STUB: WKAccessibilityRootObject called"); 64 + return NULL; 65 + } 66 + 67 + void* WKApplicationCacheManagerDeleteAllEntries(void) { 68 + if (verbose) puts("STUB: WKApplicationCacheManagerDeleteAllEntries called"); 69 + return NULL; 70 + } 71 + 72 + void* WKApplicationCacheManagerDeleteEntriesForOrigin(void) { 73 + if (verbose) puts("STUB: WKApplicationCacheManagerDeleteEntriesForOrigin called"); 74 + return NULL; 75 + } 76 + 77 + void* WKApplicationCacheManagerGetApplicationCacheOrigins(void) { 78 + if (verbose) puts("STUB: WKApplicationCacheManagerGetApplicationCacheOrigins called"); 79 + return NULL; 80 + } 81 + 82 + void* WKApplicationCacheManagerGetTypeID(void) { 83 + if (verbose) puts("STUB: WKApplicationCacheManagerGetTypeID called"); 84 + return NULL; 85 + } 86 + 87 + void* WKArrayAppendItem(void) { 88 + if (verbose) puts("STUB: WKArrayAppendItem called"); 89 + return NULL; 90 + } 91 + 92 + void* WKArrayCreate(void) { 93 + if (verbose) puts("STUB: WKArrayCreate called"); 94 + return NULL; 95 + } 96 + 97 + void* WKArrayCreateAdoptingValues(void) { 98 + if (verbose) puts("STUB: WKArrayCreateAdoptingValues called"); 99 + return NULL; 100 + } 101 + 102 + void* WKArrayGetItemAtIndex(void) { 103 + if (verbose) puts("STUB: WKArrayGetItemAtIndex called"); 104 + return NULL; 105 + } 106 + 107 + void* WKArrayGetSize(void) { 108 + if (verbose) puts("STUB: WKArrayGetSize called"); 109 + return NULL; 110 + } 111 + 112 + void* WKArrayGetTypeID(void) { 113 + if (verbose) puts("STUB: WKArrayGetTypeID called"); 114 + return NULL; 115 + } 116 + 117 + void* WKArrayRemoveItemAtIndex(void) { 118 + if (verbose) puts("STUB: WKArrayRemoveItemAtIndex called"); 119 + return NULL; 120 + } 121 + 122 + void* WKAuthenticationChallengeGetDecisionListener(void) { 123 + if (verbose) puts("STUB: WKAuthenticationChallengeGetDecisionListener called"); 124 + return NULL; 125 + } 126 + 127 + void* WKAuthenticationChallengeGetPreviousFailureCount(void) { 128 + if (verbose) puts("STUB: WKAuthenticationChallengeGetPreviousFailureCount called"); 129 + return NULL; 130 + } 131 + 132 + void* WKAuthenticationChallengeGetProposedCredential(void) { 133 + if (verbose) puts("STUB: WKAuthenticationChallengeGetProposedCredential called"); 134 + return NULL; 135 + } 136 + 137 + void* WKAuthenticationChallengeGetProtectionSpace(void) { 138 + if (verbose) puts("STUB: WKAuthenticationChallengeGetProtectionSpace called"); 139 + return NULL; 140 + } 141 + 142 + void* WKAuthenticationChallengeGetTypeID(void) { 143 + if (verbose) puts("STUB: WKAuthenticationChallengeGetTypeID called"); 144 + return NULL; 145 + } 146 + 147 + void* WKAuthenticationDecisionListenerCancel(void) { 148 + if (verbose) puts("STUB: WKAuthenticationDecisionListenerCancel called"); 149 + return NULL; 150 + } 151 + 152 + void* WKAuthenticationDecisionListenerGetTypeID(void) { 153 + if (verbose) puts("STUB: WKAuthenticationDecisionListenerGetTypeID called"); 154 + return NULL; 155 + } 156 + 157 + void* WKAuthenticationDecisionListenerRejectProtectionSpaceAndContinue(void) { 158 + if (verbose) puts("STUB: WKAuthenticationDecisionListenerRejectProtectionSpaceAndContinue called"); 159 + return NULL; 160 + } 161 + 162 + void* WKAuthenticationDecisionListenerUseCredential(void) { 163 + if (verbose) puts("STUB: WKAuthenticationDecisionListenerUseCredential called"); 164 + return NULL; 165 + } 166 + 167 + void* WKBackForwardListClear(void) { 168 + if (verbose) puts("STUB: WKBackForwardListClear called"); 169 + return NULL; 170 + } 171 + 172 + void* WKBackForwardListCopyBackListWithLimit(void) { 173 + if (verbose) puts("STUB: WKBackForwardListCopyBackListWithLimit called"); 174 + return NULL; 175 + } 176 + 177 + void* WKBackForwardListCopyForwardListWithLimit(void) { 178 + if (verbose) puts("STUB: WKBackForwardListCopyForwardListWithLimit called"); 179 + return NULL; 180 + } 181 + 182 + void* WKBackForwardListGetBackItem(void) { 183 + if (verbose) puts("STUB: WKBackForwardListGetBackItem called"); 184 + return NULL; 185 + } 186 + 187 + void* WKBackForwardListGetBackListCount(void) { 188 + if (verbose) puts("STUB: WKBackForwardListGetBackListCount called"); 189 + return NULL; 190 + } 191 + 192 + void* WKBackForwardListGetCurrentItem(void) { 193 + if (verbose) puts("STUB: WKBackForwardListGetCurrentItem called"); 194 + return NULL; 195 + } 196 + 197 + void* WKBackForwardListGetForwardItem(void) { 198 + if (verbose) puts("STUB: WKBackForwardListGetForwardItem called"); 199 + return NULL; 200 + } 201 + 202 + void* WKBackForwardListGetForwardListCount(void) { 203 + if (verbose) puts("STUB: WKBackForwardListGetForwardListCount called"); 204 + return NULL; 205 + } 206 + 207 + void* WKBackForwardListGetItemAtIndex(void) { 208 + if (verbose) puts("STUB: WKBackForwardListGetItemAtIndex called"); 209 + return NULL; 210 + } 211 + 212 + void* WKBackForwardListGetTypeID(void) { 213 + if (verbose) puts("STUB: WKBackForwardListGetTypeID called"); 214 + return NULL; 215 + } 216 + 217 + void* WKBackForwardListItemCopyOriginalURL(void) { 218 + if (verbose) puts("STUB: WKBackForwardListItemCopyOriginalURL called"); 219 + return NULL; 220 + } 221 + 222 + void* WKBackForwardListItemCopyTitle(void) { 223 + if (verbose) puts("STUB: WKBackForwardListItemCopyTitle called"); 224 + return NULL; 225 + } 226 + 227 + void* WKBackForwardListItemCopyURL(void) { 228 + if (verbose) puts("STUB: WKBackForwardListItemCopyURL called"); 229 + return NULL; 230 + } 231 + 232 + void* WKBackForwardListItemGetTypeID(void) { 233 + if (verbose) puts("STUB: WKBackForwardListItemGetTypeID called"); 234 + return NULL; 235 + } 236 + 237 + void* WKBooleanCreate(void) { 238 + if (verbose) puts("STUB: WKBooleanCreate called"); 239 + return NULL; 240 + } 241 + 242 + void* WKBooleanGetTypeID(void) { 243 + if (verbose) puts("STUB: WKBooleanGetTypeID called"); 244 + return NULL; 245 + } 246 + 247 + void* WKBooleanGetValue(void) { 248 + if (verbose) puts("STUB: WKBooleanGetValue called"); 249 + return NULL; 250 + } 251 + 252 + void* WKBundleAddOriginAccessWhitelistEntry(void) { 253 + if (verbose) puts("STUB: WKBundleAddOriginAccessWhitelistEntry called"); 254 + return NULL; 255 + } 256 + 257 + void* WKBundleAddUserScript(void) { 258 + if (verbose) puts("STUB: WKBundleAddUserScript called"); 259 + return NULL; 260 + } 261 + 262 + void* WKBundleAddUserStyleSheet(void) { 263 + if (verbose) puts("STUB: WKBundleAddUserStyleSheet called"); 264 + return NULL; 265 + } 266 + 267 + void* WKBundleBackForwardListClear(void) { 268 + if (verbose) puts("STUB: WKBundleBackForwardListClear called"); 269 + return NULL; 270 + } 271 + 272 + void* WKBundleBackForwardListCopyItemAtIndex(void) { 273 + if (verbose) puts("STUB: WKBundleBackForwardListCopyItemAtIndex called"); 274 + return NULL; 275 + } 276 + 277 + void* WKBundleBackForwardListGetBackListCount(void) { 278 + if (verbose) puts("STUB: WKBundleBackForwardListGetBackListCount called"); 279 + return NULL; 280 + } 281 + 282 + void* WKBundleBackForwardListGetForwardListCount(void) { 283 + if (verbose) puts("STUB: WKBundleBackForwardListGetForwardListCount called"); 284 + return NULL; 285 + } 286 + 287 + void* WKBundleBackForwardListGetTypeID(void) { 288 + if (verbose) puts("STUB: WKBundleBackForwardListGetTypeID called"); 289 + return NULL; 290 + } 291 + 292 + void* WKBundleBackForwardListItemCopyChildren(void) { 293 + if (verbose) puts("STUB: WKBundleBackForwardListItemCopyChildren called"); 294 + return NULL; 295 + } 296 + 297 + void* WKBundleBackForwardListItemCopyOriginalURL(void) { 298 + if (verbose) puts("STUB: WKBundleBackForwardListItemCopyOriginalURL called"); 299 + return NULL; 300 + } 301 + 302 + void* WKBundleBackForwardListItemCopyTarget(void) { 303 + if (verbose) puts("STUB: WKBundleBackForwardListItemCopyTarget called"); 304 + return NULL; 305 + } 306 + 307 + void* WKBundleBackForwardListItemCopyTitle(void) { 308 + if (verbose) puts("STUB: WKBundleBackForwardListItemCopyTitle called"); 309 + return NULL; 310 + } 311 + 312 + void* WKBundleBackForwardListItemCopyURL(void) { 313 + if (verbose) puts("STUB: WKBundleBackForwardListItemCopyURL called"); 314 + return NULL; 315 + } 316 + 317 + void* WKBundleBackForwardListItemGetTypeID(void) { 318 + if (verbose) puts("STUB: WKBundleBackForwardListItemGetTypeID called"); 319 + return NULL; 320 + } 321 + 322 + void* WKBundleBackForwardListItemHasCachedPageExpired(void) { 323 + if (verbose) puts("STUB: WKBundleBackForwardListItemHasCachedPageExpired called"); 324 + return NULL; 325 + } 326 + 327 + void* WKBundleBackForwardListItemIsInPageCache(void) { 328 + if (verbose) puts("STUB: WKBundleBackForwardListItemIsInPageCache called"); 329 + return NULL; 330 + } 331 + 332 + void* WKBundleBackForwardListItemIsSame(void) { 333 + if (verbose) puts("STUB: WKBundleBackForwardListItemIsSame called"); 334 + return NULL; 335 + } 336 + 337 + void* WKBundleBackForwardListItemIsTargetItem(void) { 338 + if (verbose) puts("STUB: WKBundleBackForwardListItemIsTargetItem called"); 339 + return NULL; 340 + } 341 + 342 + void* WKBundleClearAllDatabases(void) { 343 + if (verbose) puts("STUB: WKBundleClearAllDatabases called"); 344 + return NULL; 345 + } 346 + 347 + void* WKBundleClearResourceLoadStatistics(void) { 348 + if (verbose) puts("STUB: WKBundleClearResourceLoadStatistics called"); 349 + return NULL; 350 + } 351 + 352 + void* WKBundleCreateWKDataFromUInt8Array(void) { 353 + if (verbose) puts("STUB: WKBundleCreateWKDataFromUInt8Array called"); 354 + return NULL; 355 + } 356 + 357 + void* WKBundleDOMWindowExtensionCreate(void) { 358 + if (verbose) puts("STUB: WKBundleDOMWindowExtensionCreate called"); 359 + return NULL; 360 + } 361 + 362 + void* WKBundleDOMWindowExtensionGetFrame(void) { 363 + if (verbose) puts("STUB: WKBundleDOMWindowExtensionGetFrame called"); 364 + return NULL; 365 + } 366 + 367 + void* WKBundleDOMWindowExtensionGetScriptWorld(void) { 368 + if (verbose) puts("STUB: WKBundleDOMWindowExtensionGetScriptWorld called"); 369 + return NULL; 370 + } 371 + 372 + void* WKBundleDOMWindowExtensionGetTypeID(void) { 373 + if (verbose) puts("STUB: WKBundleDOMWindowExtensionGetTypeID called"); 374 + return NULL; 375 + } 376 + 377 + void* WKBundleFileHandleCreateWithPath(void) { 378 + if (verbose) puts("STUB: WKBundleFileHandleCreateWithPath called"); 379 + return NULL; 380 + } 381 + 382 + void* WKBundleFileHandleGetTypeID(void) { 383 + if (verbose) puts("STUB: WKBundleFileHandleGetTypeID called"); 384 + return NULL; 385 + } 386 + 387 + void* WKBundleFrameAllowsFollowingLink(void) { 388 + if (verbose) puts("STUB: WKBundleFrameAllowsFollowingLink called"); 389 + return NULL; 390 + } 391 + 392 + void* WKBundleFrameCallShouldCloseOnWebView(void) { 393 + if (verbose) puts("STUB: WKBundleFrameCallShouldCloseOnWebView called"); 394 + return NULL; 395 + } 396 + 397 + void* WKBundleFrameClearOpener(void) { 398 + if (verbose) puts("STUB: WKBundleFrameClearOpener called"); 399 + return NULL; 400 + } 401 + 402 + void* WKBundleFrameContainsAnyFormControls(void) { 403 + if (verbose) puts("STUB: WKBundleFrameContainsAnyFormControls called"); 404 + return NULL; 405 + } 406 + 407 + void* WKBundleFrameContainsAnyFormElements(void) { 408 + if (verbose) puts("STUB: WKBundleFrameContainsAnyFormElements called"); 409 + return NULL; 410 + } 411 + 412 + void* WKBundleFrameCopyChildFrames(void) { 413 + if (verbose) puts("STUB: WKBundleFrameCopyChildFrames called"); 414 + return NULL; 415 + } 416 + 417 + void* WKBundleFrameCopyCounterValue(void) { 418 + if (verbose) puts("STUB: WKBundleFrameCopyCounterValue called"); 419 + return NULL; 420 + } 421 + 422 + void* WKBundleFrameCopyInnerText(void) { 423 + if (verbose) puts("STUB: WKBundleFrameCopyInnerText called"); 424 + return NULL; 425 + } 426 + 427 + void* WKBundleFrameCopyLayerTreeAsText(void) { 428 + if (verbose) puts("STUB: WKBundleFrameCopyLayerTreeAsText called"); 429 + return NULL; 430 + } 431 + 432 + void* WKBundleFrameCopyMIMETypeForResourceWithURL(void) { 433 + if (verbose) puts("STUB: WKBundleFrameCopyMIMETypeForResourceWithURL called"); 434 + return NULL; 435 + } 436 + 437 + void* WKBundleFrameCopyName(void) { 438 + if (verbose) puts("STUB: WKBundleFrameCopyName called"); 439 + return NULL; 440 + } 441 + 442 + void* WKBundleFrameCopyProvisionalURL(void) { 443 + if (verbose) puts("STUB: WKBundleFrameCopyProvisionalURL called"); 444 + return NULL; 445 + } 446 + 447 + void* WKBundleFrameCopySecurityOrigin(void) { 448 + if (verbose) puts("STUB: WKBundleFrameCopySecurityOrigin called"); 449 + return NULL; 450 + } 451 + 452 + void* WKBundleFrameCopySuggestedFilenameForResourceWithURL(void) { 453 + if (verbose) puts("STUB: WKBundleFrameCopySuggestedFilenameForResourceWithURL called"); 454 + return NULL; 455 + } 456 + 457 + void* WKBundleFrameCopyURL(void) { 458 + if (verbose) puts("STUB: WKBundleFrameCopyURL called"); 459 + return NULL; 460 + } 461 + 462 + void* WKBundleFrameCopyWebArchive(void) { 463 + if (verbose) puts("STUB: WKBundleFrameCopyWebArchive called"); 464 + return NULL; 465 + } 466 + 467 + void* WKBundleFrameCopyWebArchiveFilteringSubframes(void) { 468 + if (verbose) puts("STUB: WKBundleFrameCopyWebArchiveFilteringSubframes called"); 469 + return NULL; 470 + } 471 + 472 + void* WKBundleFrameCreateFrameHandle(void) { 473 + if (verbose) puts("STUB: WKBundleFrameCreateFrameHandle called"); 474 + return NULL; 475 + } 476 + 477 + void* WKBundleFrameCreateHitTestResult(void) { 478 + if (verbose) puts("STUB: WKBundleFrameCreateHitTestResult called"); 479 + return NULL; 480 + } 481 + 482 + void* WKBundleFrameFocus(void) { 483 + if (verbose) puts("STUB: WKBundleFrameFocus called"); 484 + return NULL; 485 + } 486 + 487 + void* WKBundleFrameForJavaScriptContext(void) { 488 + if (verbose) puts("STUB: WKBundleFrameForJavaScriptContext called"); 489 + return NULL; 490 + } 491 + 492 + void* WKBundleFrameGetContentBounds(void) { 493 + if (verbose) puts("STUB: WKBundleFrameGetContentBounds called"); 494 + return NULL; 495 + } 496 + 497 + void* WKBundleFrameGetDocumentBackgroundColor(void) { 498 + if (verbose) puts("STUB: WKBundleFrameGetDocumentBackgroundColor called"); 499 + return NULL; 500 + } 501 + 502 + void* WKBundleFrameGetFrameLoadState(void) { 503 + if (verbose) puts("STUB: WKBundleFrameGetFrameLoadState called"); 504 + return NULL; 505 + } 506 + 507 + void* WKBundleFrameGetJavaScriptContext(void) { 508 + if (verbose) puts("STUB: WKBundleFrameGetJavaScriptContext called"); 509 + return NULL; 510 + } 511 + 512 + void* WKBundleFrameGetJavaScriptContextForWorld(void) { 513 + if (verbose) puts("STUB: WKBundleFrameGetJavaScriptContextForWorld called"); 514 + return NULL; 515 + } 516 + 517 + void* WKBundleFrameGetJavaScriptWrapperForFileForWorld(void) { 518 + if (verbose) puts("STUB: WKBundleFrameGetJavaScriptWrapperForFileForWorld called"); 519 + return NULL; 520 + } 521 + 522 + void* WKBundleFrameGetJavaScriptWrapperForNodeForWorld(void) { 523 + if (verbose) puts("STUB: WKBundleFrameGetJavaScriptWrapperForNodeForWorld called"); 524 + return NULL; 525 + } 526 + 527 + void* WKBundleFrameGetJavaScriptWrapperForRangeForWorld(void) { 528 + if (verbose) puts("STUB: WKBundleFrameGetJavaScriptWrapperForRangeForWorld called"); 529 + return NULL; 530 + } 531 + 532 + void* WKBundleFrameGetPage(void) { 533 + if (verbose) puts("STUB: WKBundleFrameGetPage called"); 534 + return NULL; 535 + } 536 + 537 + void* WKBundleFrameGetParentFrame(void) { 538 + if (verbose) puts("STUB: WKBundleFrameGetParentFrame called"); 539 + return NULL; 540 + } 541 + 542 + void* WKBundleFrameGetPendingUnloadCount(void) { 543 + if (verbose) puts("STUB: WKBundleFrameGetPendingUnloadCount called"); 544 + return NULL; 545 + } 546 + 547 + void* WKBundleFrameGetScrollOffset(void) { 548 + if (verbose) puts("STUB: WKBundleFrameGetScrollOffset called"); 549 + return NULL; 550 + } 551 + 552 + void* WKBundleFrameGetTypeID(void) { 553 + if (verbose) puts("STUB: WKBundleFrameGetTypeID called"); 554 + return NULL; 555 + } 556 + 557 + void* WKBundleFrameGetVisibleContentBounds(void) { 558 + if (verbose) puts("STUB: WKBundleFrameGetVisibleContentBounds called"); 559 + return NULL; 560 + } 561 + 562 + void* WKBundleFrameGetVisibleContentBoundsExcludingScrollbars(void) { 563 + if (verbose) puts("STUB: WKBundleFrameGetVisibleContentBoundsExcludingScrollbars called"); 564 + return NULL; 565 + } 566 + 567 + void* WKBundleFrameHandlesPageScaleGesture(void) { 568 + if (verbose) puts("STUB: WKBundleFrameHandlesPageScaleGesture called"); 569 + return NULL; 570 + } 571 + 572 + void* WKBundleFrameHasHorizontalScrollbar(void) { 573 + if (verbose) puts("STUB: WKBundleFrameHasHorizontalScrollbar called"); 574 + return NULL; 575 + } 576 + 577 + void* WKBundleFrameHasVerticalScrollbar(void) { 578 + if (verbose) puts("STUB: WKBundleFrameHasVerticalScrollbar called"); 579 + return NULL; 580 + } 581 + 582 + void* WKBundleFrameIsMainFrame(void) { 583 + if (verbose) puts("STUB: WKBundleFrameIsMainFrame called"); 584 + return NULL; 585 + } 586 + 587 + void* WKBundleFrameSetAccessibleName(void) { 588 + if (verbose) puts("STUB: WKBundleFrameSetAccessibleName called"); 589 + return NULL; 590 + } 591 + 592 + void* WKBundleFrameSetTextDirection(void) { 593 + if (verbose) puts("STUB: WKBundleFrameSetTextDirection called"); 594 + return NULL; 595 + } 596 + 597 + void* WKBundleFrameStopLoading(void) { 598 + if (verbose) puts("STUB: WKBundleFrameStopLoading called"); 599 + return NULL; 600 + } 601 + 602 + void* WKBundleGarbageCollectJavaScriptObjects(void) { 603 + if (verbose) puts("STUB: WKBundleGarbageCollectJavaScriptObjects called"); 604 + return NULL; 605 + } 606 + 607 + void* WKBundleGarbageCollectJavaScriptObjectsOnAlternateThreadForDebugging(void) { 608 + if (verbose) puts("STUB: WKBundleGarbageCollectJavaScriptObjectsOnAlternateThreadForDebugging called"); 609 + return NULL; 610 + } 611 + 612 + void* WKBundleGetApplicationConnection(void) { 613 + if (verbose) puts("STUB: WKBundleGetApplicationConnection called"); 614 + return NULL; 615 + } 616 + 617 + void* WKBundleGetJavaScriptObjectsCount(void) { 618 + if (verbose) puts("STUB: WKBundleGetJavaScriptObjectsCount called"); 619 + return NULL; 620 + } 621 + 622 + void* WKBundleGetParameters(void) { 623 + if (verbose) puts("STUB: WKBundleGetParameters called"); 624 + return NULL; 625 + } 626 + 627 + void* WKBundleGetTypeID(void) { 628 + if (verbose) puts("STUB: WKBundleGetTypeID called"); 629 + return NULL; 630 + } 631 + 632 + void* WKBundleGetWebNotificationID(void) { 633 + if (verbose) puts("STUB: WKBundleGetWebNotificationID called"); 634 + return NULL; 635 + } 636 + 637 + void* WKBundleHitTestResultCopyAbsoluteImageURL(void) { 638 + if (verbose) puts("STUB: WKBundleHitTestResultCopyAbsoluteImageURL called"); 639 + return NULL; 640 + } 641 + 642 + void* WKBundleHitTestResultCopyAbsoluteLinkURL(void) { 643 + if (verbose) puts("STUB: WKBundleHitTestResultCopyAbsoluteLinkURL called"); 644 + return NULL; 645 + } 646 + 647 + void* WKBundleHitTestResultCopyAbsoluteMediaURL(void) { 648 + if (verbose) puts("STUB: WKBundleHitTestResultCopyAbsoluteMediaURL called"); 649 + return NULL; 650 + } 651 + 652 + void* WKBundleHitTestResultCopyAbsolutePDFURL(void) { 653 + if (verbose) puts("STUB: WKBundleHitTestResultCopyAbsolutePDFURL called"); 654 + return NULL; 655 + } 656 + 657 + void* WKBundleHitTestResultCopyImage(void) { 658 + if (verbose) puts("STUB: WKBundleHitTestResultCopyImage called"); 659 + return NULL; 660 + } 661 + 662 + void* WKBundleHitTestResultCopyLinkLabel(void) { 663 + if (verbose) puts("STUB: WKBundleHitTestResultCopyLinkLabel called"); 664 + return NULL; 665 + } 666 + 667 + void* WKBundleHitTestResultCopyLinkSuggestedFilename(void) { 668 + if (verbose) puts("STUB: WKBundleHitTestResultCopyLinkSuggestedFilename called"); 669 + return NULL; 670 + } 671 + 672 + void* WKBundleHitTestResultCopyLinkTitle(void) { 673 + if (verbose) puts("STUB: WKBundleHitTestResultCopyLinkTitle called"); 674 + return NULL; 675 + } 676 + 677 + void* WKBundleHitTestResultCopyNodeHandle(void) { 678 + if (verbose) puts("STUB: WKBundleHitTestResultCopyNodeHandle called"); 679 + return NULL; 680 + } 681 + 682 + void* WKBundleHitTestResultCopyURLElementHandle(void) { 683 + if (verbose) puts("STUB: WKBundleHitTestResultCopyURLElementHandle called"); 684 + return NULL; 685 + } 686 + 687 + void* WKBundleHitTestResultGetFrame(void) { 688 + if (verbose) puts("STUB: WKBundleHitTestResultGetFrame called"); 689 + return NULL; 690 + } 691 + 692 + void* WKBundleHitTestResultGetImageRect(void) { 693 + if (verbose) puts("STUB: WKBundleHitTestResultGetImageRect called"); 694 + return NULL; 695 + } 696 + 697 + void* WKBundleHitTestResultGetIsSelected(void) { 698 + if (verbose) puts("STUB: WKBundleHitTestResultGetIsSelected called"); 699 + return NULL; 700 + } 701 + 702 + void* WKBundleHitTestResultGetMediaType(void) { 703 + if (verbose) puts("STUB: WKBundleHitTestResultGetMediaType called"); 704 + return NULL; 705 + } 706 + 707 + void* WKBundleHitTestResultGetTargetFrame(void) { 708 + if (verbose) puts("STUB: WKBundleHitTestResultGetTargetFrame called"); 709 + return NULL; 710 + } 711 + 712 + void* WKBundleHitTestResultGetTypeID(void) { 713 + if (verbose) puts("STUB: WKBundleHitTestResultGetTypeID called"); 714 + return NULL; 715 + } 716 + 717 + void* WKBundleHitTestResultIsDownloadableMedia(void) { 718 + if (verbose) puts("STUB: WKBundleHitTestResultIsDownloadableMedia called"); 719 + return NULL; 720 + } 721 + 722 + void* WKBundleHitTestResultMediaHasAudio(void) { 723 + if (verbose) puts("STUB: WKBundleHitTestResultMediaHasAudio called"); 724 + return NULL; 725 + } 726 + 727 + void* WKBundleHitTestResultMediaIsInFullscreen(void) { 728 + if (verbose) puts("STUB: WKBundleHitTestResultMediaIsInFullscreen called"); 729 + return NULL; 730 + } 731 + 732 + void* WKBundleInspectorClose(void) { 733 + if (verbose) puts("STUB: WKBundleInspectorClose called"); 734 + return NULL; 735 + } 736 + 737 + void* WKBundleInspectorEvaluateScriptForTest(void) { 738 + if (verbose) puts("STUB: WKBundleInspectorEvaluateScriptForTest called"); 739 + return NULL; 740 + } 741 + 742 + void* WKBundleInspectorGetTypeID(void) { 743 + if (verbose) puts("STUB: WKBundleInspectorGetTypeID called"); 744 + return NULL; 745 + } 746 + 747 + void* WKBundleInspectorSetPageProfilingEnabled(void) { 748 + if (verbose) puts("STUB: WKBundleInspectorSetPageProfilingEnabled called"); 749 + return NULL; 750 + } 751 + 752 + void* WKBundleInspectorShow(void) { 753 + if (verbose) puts("STUB: WKBundleInspectorShow called"); 754 + return NULL; 755 + } 756 + 757 + void* WKBundleIsPageBoxVisible(void) { 758 + if (verbose) puts("STUB: WKBundleIsPageBoxVisible called"); 759 + return NULL; 760 + } 761 + 762 + void* WKBundleIsProcessingUserGesture(void) { 763 + if (verbose) puts("STUB: WKBundleIsProcessingUserGesture called"); 764 + return NULL; 765 + } 766 + 767 + void* WKBundleNavigationActionCopyDownloadAttribute(void) { 768 + if (verbose) puts("STUB: WKBundleNavigationActionCopyDownloadAttribute called"); 769 + return NULL; 770 + } 771 + 772 + void* WKBundleNavigationActionCopyFormElement(void) { 773 + if (verbose) puts("STUB: WKBundleNavigationActionCopyFormElement called"); 774 + return NULL; 775 + } 776 + 777 + void* WKBundleNavigationActionCopyHitTestResult(void) { 778 + if (verbose) puts("STUB: WKBundleNavigationActionCopyHitTestResult called"); 779 + return NULL; 780 + } 781 + 782 + void* WKBundleNavigationActionGetEventModifiers(void) { 783 + if (verbose) puts("STUB: WKBundleNavigationActionGetEventModifiers called"); 784 + return NULL; 785 + } 786 + 787 + void* WKBundleNavigationActionGetEventMouseButton(void) { 788 + if (verbose) puts("STUB: WKBundleNavigationActionGetEventMouseButton called"); 789 + return NULL; 790 + } 791 + 792 + void* WKBundleNavigationActionGetNavigationType(void) { 793 + if (verbose) puts("STUB: WKBundleNavigationActionGetNavigationType called"); 794 + return NULL; 795 + } 796 + 797 + void* WKBundleNavigationActionGetShouldOpenExternalURLs(void) { 798 + if (verbose) puts("STUB: WKBundleNavigationActionGetShouldOpenExternalURLs called"); 799 + return NULL; 800 + } 801 + 802 + void* WKBundleNavigationActionGetShouldTryAppLinks(void) { 803 + if (verbose) puts("STUB: WKBundleNavigationActionGetShouldTryAppLinks called"); 804 + return NULL; 805 + } 806 + 807 + void* WKBundleNavigationActionGetTypeID(void) { 808 + if (verbose) puts("STUB: WKBundleNavigationActionGetTypeID called"); 809 + return NULL; 810 + } 811 + 812 + void* WKBundleNodeHandleCopyDocument(void) { 813 + if (verbose) puts("STUB: WKBundleNodeHandleCopyDocument called"); 814 + return NULL; 815 + } 816 + 817 + void* WKBundleNodeHandleCopyDocumentFrame(void) { 818 + if (verbose) puts("STUB: WKBundleNodeHandleCopyDocumentFrame called"); 819 + return NULL; 820 + } 821 + 822 + void* WKBundleNodeHandleCopyHTMLFrameElementContentFrame(void) { 823 + if (verbose) puts("STUB: WKBundleNodeHandleCopyHTMLFrameElementContentFrame called"); 824 + return NULL; 825 + } 826 + 827 + void* WKBundleNodeHandleCopyHTMLIFrameElementContentFrame(void) { 828 + if (verbose) puts("STUB: WKBundleNodeHandleCopyHTMLIFrameElementContentFrame called"); 829 + return NULL; 830 + } 831 + 832 + void* WKBundleNodeHandleCopyHTMLTableCellElementCellAbove(void) { 833 + if (verbose) puts("STUB: WKBundleNodeHandleCopyHTMLTableCellElementCellAbove called"); 834 + return NULL; 835 + } 836 + 837 + void* WKBundleNodeHandleCopySnapshotWithOptions(void) { 838 + if (verbose) puts("STUB: WKBundleNodeHandleCopySnapshotWithOptions called"); 839 + return NULL; 840 + } 841 + 842 + void* WKBundleNodeHandleCopyVisibleRange(void) { 843 + if (verbose) puts("STUB: WKBundleNodeHandleCopyVisibleRange called"); 844 + return NULL; 845 + } 846 + 847 + void* WKBundleNodeHandleCreate(void) { 848 + if (verbose) puts("STUB: WKBundleNodeHandleCreate called"); 849 + return NULL; 850 + } 851 + 852 + void* WKBundleNodeHandleGetElementBounds(void) { 853 + if (verbose) puts("STUB: WKBundleNodeHandleGetElementBounds called"); 854 + return NULL; 855 + } 856 + 857 + void* WKBundleNodeHandleGetHTMLInputElementAutoFillAvailable(void) { 858 + if (verbose) puts("STUB: WKBundleNodeHandleGetHTMLInputElementAutoFillAvailable called"); 859 + return NULL; 860 + } 861 + 862 + void* WKBundleNodeHandleGetHTMLInputElementAutoFillButtonBounds(void) { 863 + if (verbose) puts("STUB: WKBundleNodeHandleGetHTMLInputElementAutoFillButtonBounds called"); 864 + return NULL; 865 + } 866 + 867 + void* WKBundleNodeHandleGetHTMLInputElementAutoFillButtonEnabled(void) { 868 + if (verbose) puts("STUB: WKBundleNodeHandleGetHTMLInputElementAutoFillButtonEnabled called"); 869 + return NULL; 870 + } 871 + 872 + void* WKBundleNodeHandleGetHTMLInputElementAutoFillButtonType(void) { 873 + if (verbose) puts("STUB: WKBundleNodeHandleGetHTMLInputElementAutoFillButtonType called"); 874 + return NULL; 875 + } 876 + 877 + void* WKBundleNodeHandleGetHTMLInputElementAutoFilled(void) { 878 + if (verbose) puts("STUB: WKBundleNodeHandleGetHTMLInputElementAutoFilled called"); 879 + return NULL; 880 + } 881 + 882 + void* WKBundleNodeHandleGetHTMLInputElementAutofilled(void) { 883 + if (verbose) puts("STUB: WKBundleNodeHandleGetHTMLInputElementAutofilled called"); 884 + return NULL; 885 + } 886 + 887 + void* WKBundleNodeHandleGetHTMLInputElementLastAutoFillButtonType(void) { 888 + if (verbose) puts("STUB: WKBundleNodeHandleGetHTMLInputElementLastAutoFillButtonType called"); 889 + return NULL; 890 + } 891 + 892 + void* WKBundleNodeHandleGetHTMLInputElementLastChangeWasUserEdit(void) { 893 + if (verbose) puts("STUB: WKBundleNodeHandleGetHTMLInputElementLastChangeWasUserEdit called"); 894 + return NULL; 895 + } 896 + 897 + void* WKBundleNodeHandleGetHTMLTextAreaElementLastChangeWasUserEdit(void) { 898 + if (verbose) puts("STUB: WKBundleNodeHandleGetHTMLTextAreaElementLastChangeWasUserEdit called"); 899 + return NULL; 900 + } 901 + 902 + void* WKBundleNodeHandleGetRenderRect(void) { 903 + if (verbose) puts("STUB: WKBundleNodeHandleGetRenderRect called"); 904 + return NULL; 905 + } 906 + 907 + void* WKBundleNodeHandleGetTypeID(void) { 908 + if (verbose) puts("STUB: WKBundleNodeHandleGetTypeID called"); 909 + return NULL; 910 + } 911 + 912 + void* WKBundleNodeHandleSetHTMLInputElementAutoFillAvailable(void) { 913 + if (verbose) puts("STUB: WKBundleNodeHandleSetHTMLInputElementAutoFillAvailable called"); 914 + return NULL; 915 + } 916 + 917 + void* WKBundleNodeHandleSetHTMLInputElementAutoFillButtonEnabled(void) { 918 + if (verbose) puts("STUB: WKBundleNodeHandleSetHTMLInputElementAutoFillButtonEnabled called"); 919 + return NULL; 920 + } 921 + 922 + void* WKBundleNodeHandleSetHTMLInputElementAutoFillButtonEnabledWithButtonType(void) { 923 + if (verbose) puts("STUB: WKBundleNodeHandleSetHTMLInputElementAutoFillButtonEnabledWithButtonType called"); 924 + return NULL; 925 + } 926 + 927 + void* WKBundleNodeHandleSetHTMLInputElementAutoFilled(void) { 928 + if (verbose) puts("STUB: WKBundleNodeHandleSetHTMLInputElementAutoFilled called"); 929 + return NULL; 930 + } 931 + 932 + void* WKBundleNodeHandleSetHTMLInputElementAutofilled(void) { 933 + if (verbose) puts("STUB: WKBundleNodeHandleSetHTMLInputElementAutofilled called"); 934 + return NULL; 935 + } 936 + 937 + void* WKBundleNodeHandleSetHTMLInputElementSpellcheckEnabled(void) { 938 + if (verbose) puts("STUB: WKBundleNodeHandleSetHTMLInputElementSpellcheckEnabled called"); 939 + return NULL; 940 + } 941 + 942 + void* WKBundleNodeHandleSetHTMLInputElementValueForUser(void) { 943 + if (verbose) puts("STUB: WKBundleNodeHandleSetHTMLInputElementValueForUser called"); 944 + return NULL; 945 + } 946 + 947 + void* WKBundleNumberOfPages(void) { 948 + if (verbose) puts("STUB: WKBundleNumberOfPages called"); 949 + return NULL; 950 + } 951 + 952 + void* WKBundleOverrideBoolPreferenceForTestRunner(void) { 953 + if (verbose) puts("STUB: WKBundleOverrideBoolPreferenceForTestRunner called"); 954 + return NULL; 955 + } 956 + 957 + void* WKBundlePageAddUserScript(void) { 958 + if (verbose) puts("STUB: WKBundlePageAddUserScript called"); 959 + return NULL; 960 + } 961 + 962 + void* WKBundlePageAddUserStyleSheet(void) { 963 + if (verbose) puts("STUB: WKBundlePageAddUserStyleSheet called"); 964 + return NULL; 965 + } 966 + 967 + void* WKBundlePageBannerCreateBannerWithCALayer(void) { 968 + if (verbose) puts("STUB: WKBundlePageBannerCreateBannerWithCALayer called"); 969 + return NULL; 970 + } 971 + 972 + void* WKBundlePageBannerGetLayer(void) { 973 + if (verbose) puts("STUB: WKBundlePageBannerGetLayer called"); 974 + return NULL; 975 + } 976 + 977 + void* WKBundlePageBannerGetTypeID(void) { 978 + if (verbose) puts("STUB: WKBundlePageBannerGetTypeID called"); 979 + return NULL; 980 + } 981 + 982 + void* WKBundlePageCanHandleRequest(void) { 983 + if (verbose) puts("STUB: WKBundlePageCanHandleRequest called"); 984 + return NULL; 985 + } 986 + 987 + void* WKBundlePageCanShowMIMEType(void) { 988 + if (verbose) puts("STUB: WKBundlePageCanShowMIMEType called"); 989 + return NULL; 990 + } 991 + 992 + void* WKBundlePageClearApplicationCache(void) { 993 + if (verbose) puts("STUB: WKBundlePageClearApplicationCache called"); 994 + return NULL; 995 + } 996 + 997 + void* WKBundlePageClearApplicationCacheForOrigin(void) { 998 + if (verbose) puts("STUB: WKBundlePageClearApplicationCacheForOrigin called"); 999 + return NULL; 1000 + } 1001 + 1002 + void* WKBundlePageClearMainFrameName(void) { 1003 + if (verbose) puts("STUB: WKBundlePageClearMainFrameName called"); 1004 + return NULL; 1005 + } 1006 + 1007 + void* WKBundlePageClickMenuItem(void) { 1008 + if (verbose) puts("STUB: WKBundlePageClickMenuItem called"); 1009 + return NULL; 1010 + } 1011 + 1012 + void* WKBundlePageClose(void) { 1013 + if (verbose) puts("STUB: WKBundlePageClose called"); 1014 + return NULL; 1015 + } 1016 + 1017 + void* WKBundlePageConfirmComposition(void) { 1018 + if (verbose) puts("STUB: WKBundlePageConfirmComposition called"); 1019 + return NULL; 1020 + } 1021 + 1022 + void* WKBundlePageConfirmCompositionWithText(void) { 1023 + if (verbose) puts("STUB: WKBundlePageConfirmCompositionWithText called"); 1024 + return NULL; 1025 + } 1026 + 1027 + void* WKBundlePageCopyContextMenuAtPointInWindow(void) { 1028 + if (verbose) puts("STUB: WKBundlePageCopyContextMenuAtPointInWindow called"); 1029 + return NULL; 1030 + } 1031 + 1032 + void* WKBundlePageCopyContextMenuItems(void) { 1033 + if (verbose) puts("STUB: WKBundlePageCopyContextMenuItems called"); 1034 + return NULL; 1035 + } 1036 + 1037 + void* WKBundlePageCopyGroupIdentifier(void) { 1038 + if (verbose) puts("STUB: WKBundlePageCopyGroupIdentifier called"); 1039 + return NULL; 1040 + } 1041 + 1042 + void* WKBundlePageCopyOriginsWithApplicationCache(void) { 1043 + if (verbose) puts("STUB: WKBundlePageCopyOriginsWithApplicationCache called"); 1044 + return NULL; 1045 + } 1046 + 1047 + void* WKBundlePageCopyRenderLayerTree(void) { 1048 + if (verbose) puts("STUB: WKBundlePageCopyRenderLayerTree called"); 1049 + return NULL; 1050 + } 1051 + 1052 + void* WKBundlePageCopyRenderTree(void) { 1053 + if (verbose) puts("STUB: WKBundlePageCopyRenderTree called"); 1054 + return NULL; 1055 + } 1056 + 1057 + void* WKBundlePageCopyRenderTreeExternalRepresentation(void) { 1058 + if (verbose) puts("STUB: WKBundlePageCopyRenderTreeExternalRepresentation called"); 1059 + return NULL; 1060 + } 1061 + 1062 + void* WKBundlePageCopyRenderTreeExternalRepresentationForPrinting(void) { 1063 + if (verbose) puts("STUB: WKBundlePageCopyRenderTreeExternalRepresentationForPrinting called"); 1064 + return NULL; 1065 + } 1066 + 1067 + void* WKBundlePageCopyTrackedRepaintRects(void) { 1068 + if (verbose) puts("STUB: WKBundlePageCopyTrackedRepaintRects called"); 1069 + return NULL; 1070 + } 1071 + 1072 + void* WKBundlePageCreateScaledSnapshotInDocumentCoordinates(void) { 1073 + if (verbose) puts("STUB: WKBundlePageCreateScaledSnapshotInDocumentCoordinates called"); 1074 + return NULL; 1075 + } 1076 + 1077 + void* WKBundlePageCreateSnapshotInDocumentCoordinates(void) { 1078 + if (verbose) puts("STUB: WKBundlePageCreateSnapshotInDocumentCoordinates called"); 1079 + return NULL; 1080 + } 1081 + 1082 + void* WKBundlePageCreateSnapshotInViewCoordinates(void) { 1083 + if (verbose) puts("STUB: WKBundlePageCreateSnapshotInViewCoordinates called"); 1084 + return NULL; 1085 + } 1086 + 1087 + void* WKBundlePageCreateSnapshotWithOptions(void) { 1088 + if (verbose) puts("STUB: WKBundlePageCreateSnapshotWithOptions called"); 1089 + return NULL; 1090 + } 1091 + 1092 + void* WKBundlePageDidEnterFullScreen(void) { 1093 + if (verbose) puts("STUB: WKBundlePageDidEnterFullScreen called"); 1094 + return NULL; 1095 + } 1096 + 1097 + void* WKBundlePageDidExitFullScreen(void) { 1098 + if (verbose) puts("STUB: WKBundlePageDidExitFullScreen called"); 1099 + return NULL; 1100 + } 1101 + 1102 + void* WKBundlePageExecuteEditingCommand(void) { 1103 + if (verbose) puts("STUB: WKBundlePageExecuteEditingCommand called"); 1104 + return NULL; 1105 + } 1106 + 1107 + void* WKBundlePageExtendIncrementalRenderingSuppression(void) { 1108 + if (verbose) puts("STUB: WKBundlePageExtendIncrementalRenderingSuppression called"); 1109 + return NULL; 1110 + } 1111 + 1112 + void* WKBundlePageFindString(void) { 1113 + if (verbose) puts("STUB: WKBundlePageFindString called"); 1114 + return NULL; 1115 + } 1116 + 1117 + void* WKBundlePageForceRepaint(void) { 1118 + if (verbose) puts("STUB: WKBundlePageForceRepaint called"); 1119 + return NULL; 1120 + } 1121 + 1122 + void* WKBundlePageGetAppCacheUsageForOrigin(void) { 1123 + if (verbose) puts("STUB: WKBundlePageGetAppCacheUsageForOrigin called"); 1124 + return NULL; 1125 + } 1126 + 1127 + void* WKBundlePageGetBackForwardList(void) { 1128 + if (verbose) puts("STUB: WKBundlePageGetBackForwardList called"); 1129 + return NULL; 1130 + } 1131 + 1132 + void* WKBundlePageGetBackingScaleFactor(void) { 1133 + if (verbose) puts("STUB: WKBundlePageGetBackingScaleFactor called"); 1134 + return NULL; 1135 + } 1136 + 1137 + void* WKBundlePageGetInspector(void) { 1138 + if (verbose) puts("STUB: WKBundlePageGetInspector called"); 1139 + return NULL; 1140 + } 1141 + 1142 + void* WKBundlePageGetMainFrame(void) { 1143 + if (verbose) puts("STUB: WKBundlePageGetMainFrame called"); 1144 + return NULL; 1145 + } 1146 + 1147 + void* WKBundlePageGetPageGroup(void) { 1148 + if (verbose) puts("STUB: WKBundlePageGetPageGroup called"); 1149 + return NULL; 1150 + } 1151 + 1152 + void* WKBundlePageGetPageZoomFactor(void) { 1153 + if (verbose) puts("STUB: WKBundlePageGetPageZoomFactor called"); 1154 + return NULL; 1155 + } 1156 + 1157 + void* WKBundlePageGetRenderTreeSize(void) { 1158 + if (verbose) puts("STUB: WKBundlePageGetRenderTreeSize called"); 1159 + return NULL; 1160 + } 1161 + 1162 + void* WKBundlePageGetTextZoomFactor(void) { 1163 + if (verbose) puts("STUB: WKBundlePageGetTextZoomFactor called"); 1164 + return NULL; 1165 + } 1166 + 1167 + void* WKBundlePageGetTypeID(void) { 1168 + if (verbose) puts("STUB: WKBundlePageGetTypeID called"); 1169 + return NULL; 1170 + } 1171 + 1172 + void* WKBundlePageGroupCopyIdentifier(void) { 1173 + if (verbose) puts("STUB: WKBundlePageGroupCopyIdentifier called"); 1174 + return NULL; 1175 + } 1176 + 1177 + void* WKBundlePageGroupGetTypeID(void) { 1178 + if (verbose) puts("STUB: WKBundlePageGroupGetTypeID called"); 1179 + return NULL; 1180 + } 1181 + 1182 + void* WKBundlePageHasComposition(void) { 1183 + if (verbose) puts("STUB: WKBundlePageHasComposition called"); 1184 + return NULL; 1185 + } 1186 + 1187 + void* WKBundlePageHasLocalDataForURL(void) { 1188 + if (verbose) puts("STUB: WKBundlePageHasLocalDataForURL called"); 1189 + return NULL; 1190 + } 1191 + 1192 + void* WKBundlePageInsertNewlineInQuotedContent(void) { 1193 + if (verbose) puts("STUB: WKBundlePageInsertNewlineInQuotedContent called"); 1194 + return NULL; 1195 + } 1196 + 1197 + void* WKBundlePageInstallPageOverlay(void) { 1198 + if (verbose) puts("STUB: WKBundlePageInstallPageOverlay called"); 1199 + return NULL; 1200 + } 1201 + 1202 + void* WKBundlePageInstallPageOverlayWithAnimation(void) { 1203 + if (verbose) puts("STUB: WKBundlePageInstallPageOverlayWithAnimation called"); 1204 + return NULL; 1205 + } 1206 + 1207 + void* WKBundlePageIsControlledByAutomation(void) { 1208 + if (verbose) puts("STUB: WKBundlePageIsControlledByAutomation called"); 1209 + return NULL; 1210 + } 1211 + 1212 + void* WKBundlePageIsEditingCommandEnabled(void) { 1213 + if (verbose) puts("STUB: WKBundlePageIsEditingCommandEnabled called"); 1214 + return NULL; 1215 + } 1216 + 1217 + void* WKBundlePageIsTrackingRepaints(void) { 1218 + if (verbose) puts("STUB: WKBundlePageIsTrackingRepaints called"); 1219 + return NULL; 1220 + } 1221 + 1222 + void* WKBundlePageIsUsingEphemeralSession(void) { 1223 + if (verbose) puts("STUB: WKBundlePageIsUsingEphemeralSession called"); 1224 + return NULL; 1225 + } 1226 + 1227 + void* WKBundlePageListenForLayoutMilestones(void) { 1228 + if (verbose) puts("STUB: WKBundlePageListenForLayoutMilestones called"); 1229 + return NULL; 1230 + } 1231 + 1232 + void* WKBundlePageNumberForElementById(void) { 1233 + if (verbose) puts("STUB: WKBundlePageNumberForElementById called"); 1234 + return NULL; 1235 + } 1236 + 1237 + void* WKBundlePageOverlayClear(void) { 1238 + if (verbose) puts("STUB: WKBundlePageOverlayClear called"); 1239 + return NULL; 1240 + } 1241 + 1242 + void* WKBundlePageOverlayCreate(void) { 1243 + if (verbose) puts("STUB: WKBundlePageOverlayCreate called"); 1244 + return NULL; 1245 + } 1246 + 1247 + void* WKBundlePageOverlayFractionFadedIn(void) { 1248 + if (verbose) puts("STUB: WKBundlePageOverlayFractionFadedIn called"); 1249 + return NULL; 1250 + } 1251 + 1252 + void* WKBundlePageOverlayGetTypeID(void) { 1253 + if (verbose) puts("STUB: WKBundlePageOverlayGetTypeID called"); 1254 + return NULL; 1255 + } 1256 + 1257 + void* WKBundlePageOverlaySetAccessibilityClient(void) { 1258 + if (verbose) puts("STUB: WKBundlePageOverlaySetAccessibilityClient called"); 1259 + return NULL; 1260 + } 1261 + 1262 + void* WKBundlePageOverlaySetNeedsDisplay(void) { 1263 + if (verbose) puts("STUB: WKBundlePageOverlaySetNeedsDisplay called"); 1264 + return NULL; 1265 + } 1266 + 1267 + void* WKBundlePagePostMessage(void) { 1268 + if (verbose) puts("STUB: WKBundlePagePostMessage called"); 1269 + return NULL; 1270 + } 1271 + 1272 + void* WKBundlePagePostSynchronousMessageForTesting(void) { 1273 + if (verbose) puts("STUB: WKBundlePagePostSynchronousMessageForTesting called"); 1274 + return NULL; 1275 + } 1276 + 1277 + void* WKBundlePageRegisterScrollOperationCompletionCallback(void) { 1278 + if (verbose) puts("STUB: WKBundlePageRegisterScrollOperationCompletionCallback called"); 1279 + return NULL; 1280 + } 1281 + 1282 + void* WKBundlePageRemoveAllUserContent(void) { 1283 + if (verbose) puts("STUB: WKBundlePageRemoveAllUserContent called"); 1284 + return NULL; 1285 + } 1286 + 1287 + void* WKBundlePageResetApplicationCacheOriginQuota(void) { 1288 + if (verbose) puts("STUB: WKBundlePageResetApplicationCacheOriginQuota called"); 1289 + return NULL; 1290 + } 1291 + 1292 + void* WKBundlePageResetTrackedRepaints(void) { 1293 + if (verbose) puts("STUB: WKBundlePageResetTrackedRepaints called"); 1294 + return NULL; 1295 + } 1296 + 1297 + void* WKBundlePageSetAppCacheMaximumSize(void) { 1298 + if (verbose) puts("STUB: WKBundlePageSetAppCacheMaximumSize called"); 1299 + return NULL; 1300 + } 1301 + 1302 + void* WKBundlePageSetApplicationCacheOriginQuota(void) { 1303 + if (verbose) puts("STUB: WKBundlePageSetApplicationCacheOriginQuota called"); 1304 + return NULL; 1305 + } 1306 + 1307 + void* WKBundlePageSetBottomOverhangImage(void) { 1308 + if (verbose) puts("STUB: WKBundlePageSetBottomOverhangImage called"); 1309 + return NULL; 1310 + } 1311 + 1312 + void* WKBundlePageSetComposition(void) { 1313 + if (verbose) puts("STUB: WKBundlePageSetComposition called"); 1314 + return NULL; 1315 + } 1316 + 1317 + void* WKBundlePageSetContextMenuClient(void) { 1318 + if (verbose) puts("STUB: WKBundlePageSetContextMenuClient called"); 1319 + return NULL; 1320 + } 1321 + 1322 + void* WKBundlePageSetDefersLoading(void) { 1323 + if (verbose) puts("STUB: WKBundlePageSetDefersLoading called"); 1324 + return NULL; 1325 + } 1326 + 1327 + void* WKBundlePageSetEditorClient(void) { 1328 + if (verbose) puts("STUB: WKBundlePageSetEditorClient called"); 1329 + return NULL; 1330 + } 1331 + 1332 + void* WKBundlePageSetEventThrottlingBehaviorOverride(void) { 1333 + if (verbose) puts("STUB: WKBundlePageSetEventThrottlingBehaviorOverride called"); 1334 + return NULL; 1335 + } 1336 + 1337 + void* WKBundlePageSetFooterBanner(void) { 1338 + if (verbose) puts("STUB: WKBundlePageSetFooterBanner called"); 1339 + return NULL; 1340 + } 1341 + 1342 + void* WKBundlePageSetFormClient(void) { 1343 + if (verbose) puts("STUB: WKBundlePageSetFormClient called"); 1344 + return NULL; 1345 + } 1346 + 1347 + void* WKBundlePageSetFullScreenClient(void) { 1348 + if (verbose) puts("STUB: WKBundlePageSetFullScreenClient called"); 1349 + return NULL; 1350 + } 1351 + 1352 + void* WKBundlePageSetHeaderBanner(void) { 1353 + if (verbose) puts("STUB: WKBundlePageSetHeaderBanner called"); 1354 + return NULL; 1355 + } 1356 + 1357 + void* WKBundlePageSetPageLoaderClient(void) { 1358 + if (verbose) puts("STUB: WKBundlePageSetPageLoaderClient called"); 1359 + return NULL; 1360 + } 1361 + 1362 + void* WKBundlePageSetPageZoomFactor(void) { 1363 + if (verbose) puts("STUB: WKBundlePageSetPageZoomFactor called"); 1364 + return NULL; 1365 + } 1366 + 1367 + void* WKBundlePageSetPaintedObjectsCounterThreshold(void) { 1368 + if (verbose) puts("STUB: WKBundlePageSetPaintedObjectsCounterThreshold called"); 1369 + return NULL; 1370 + } 1371 + 1372 + void* WKBundlePageSetPolicyClient(void) { 1373 + if (verbose) puts("STUB: WKBundlePageSetPolicyClient called"); 1374 + return NULL; 1375 + } 1376 + 1377 + void* WKBundlePageSetResourceLoadClient(void) { 1378 + if (verbose) puts("STUB: WKBundlePageSetResourceLoadClient called"); 1379 + return NULL; 1380 + } 1381 + 1382 + void* WKBundlePageSetScaleAtOrigin(void) { 1383 + if (verbose) puts("STUB: WKBundlePageSetScaleAtOrigin called"); 1384 + return NULL; 1385 + } 1386 + 1387 + void* WKBundlePageSetTextZoomFactor(void) { 1388 + if (verbose) puts("STUB: WKBundlePageSetTextZoomFactor called"); 1389 + return NULL; 1390 + } 1391 + 1392 + void* WKBundlePageSetTopOverhangImage(void) { 1393 + if (verbose) puts("STUB: WKBundlePageSetTopOverhangImage called"); 1394 + return NULL; 1395 + } 1396 + 1397 + void* WKBundlePageSetTracksRepaints(void) { 1398 + if (verbose) puts("STUB: WKBundlePageSetTracksRepaints called"); 1399 + return NULL; 1400 + } 1401 + 1402 + void* WKBundlePageSetUIClient(void) { 1403 + if (verbose) puts("STUB: WKBundlePageSetUIClient called"); 1404 + return NULL; 1405 + } 1406 + 1407 + void* WKBundlePageSimulateMouseDown(void) { 1408 + if (verbose) puts("STUB: WKBundlePageSimulateMouseDown called"); 1409 + return NULL; 1410 + } 1411 + 1412 + void* WKBundlePageSimulateMouseMotion(void) { 1413 + if (verbose) puts("STUB: WKBundlePageSimulateMouseMotion called"); 1414 + return NULL; 1415 + } 1416 + 1417 + void* WKBundlePageSimulateMouseUp(void) { 1418 + if (verbose) puts("STUB: WKBundlePageSimulateMouseUp called"); 1419 + return NULL; 1420 + } 1421 + 1422 + void* WKBundlePageSizeAndMarginsInPixels(void) { 1423 + if (verbose) puts("STUB: WKBundlePageSizeAndMarginsInPixels called"); 1424 + return NULL; 1425 + } 1426 + 1427 + void* WKBundlePageStartMonitoringScrollOperations(void) { 1428 + if (verbose) puts("STUB: WKBundlePageStartMonitoringScrollOperations called"); 1429 + return NULL; 1430 + } 1431 + 1432 + void* WKBundlePageStopExtendingIncrementalRenderingSuppression(void) { 1433 + if (verbose) puts("STUB: WKBundlePageStopExtendingIncrementalRenderingSuppression called"); 1434 + return NULL; 1435 + } 1436 + 1437 + void* WKBundlePageStopLoading(void) { 1438 + if (verbose) puts("STUB: WKBundlePageStopLoading called"); 1439 + return NULL; 1440 + } 1441 + 1442 + void* WKBundlePageUninstallPageOverlay(void) { 1443 + if (verbose) puts("STUB: WKBundlePageUninstallPageOverlay called"); 1444 + return NULL; 1445 + } 1446 + 1447 + void* WKBundlePageUninstallPageOverlayWithAnimation(void) { 1448 + if (verbose) puts("STUB: WKBundlePageUninstallPageOverlayWithAnimation called"); 1449 + return NULL; 1450 + } 1451 + 1452 + void* WKBundlePageWillEnterFullScreen(void) { 1453 + if (verbose) puts("STUB: WKBundlePageWillEnterFullScreen called"); 1454 + return NULL; 1455 + } 1456 + 1457 + void* WKBundlePageWillExitFullScreen(void) { 1458 + if (verbose) puts("STUB: WKBundlePageWillExitFullScreen called"); 1459 + return NULL; 1460 + } 1461 + 1462 + void* WKBundlePostMessage(void) { 1463 + if (verbose) puts("STUB: WKBundlePostMessage called"); 1464 + return NULL; 1465 + } 1466 + 1467 + void* WKBundlePostSynchronousMessage(void) { 1468 + if (verbose) puts("STUB: WKBundlePostSynchronousMessage called"); 1469 + return NULL; 1470 + } 1471 + 1472 + void* WKBundleRangeHandleCopySnapshotWithOptions(void) { 1473 + if (verbose) puts("STUB: WKBundleRangeHandleCopySnapshotWithOptions called"); 1474 + return NULL; 1475 + } 1476 + 1477 + void* WKBundleRangeHandleCreate(void) { 1478 + if (verbose) puts("STUB: WKBundleRangeHandleCreate called"); 1479 + return NULL; 1480 + } 1481 + 1482 + void* WKBundleRangeHandleGetBoundingRectInWindowCoordinates(void) { 1483 + if (verbose) puts("STUB: WKBundleRangeHandleGetBoundingRectInWindowCoordinates called"); 1484 + return NULL; 1485 + } 1486 + 1487 + void* WKBundleRangeHandleGetTypeID(void) { 1488 + if (verbose) puts("STUB: WKBundleRangeHandleGetTypeID called"); 1489 + return NULL; 1490 + } 1491 + 1492 + void* WKBundleRemoveAllUserContent(void) { 1493 + if (verbose) puts("STUB: WKBundleRemoveAllUserContent called"); 1494 + return NULL; 1495 + } 1496 + 1497 + void* WKBundleRemoveAllWebNotificationPermissions(void) { 1498 + if (verbose) puts("STUB: WKBundleRemoveAllWebNotificationPermissions called"); 1499 + return NULL; 1500 + } 1501 + 1502 + void* WKBundleRemoveOriginAccessWhitelistEntry(void) { 1503 + if (verbose) puts("STUB: WKBundleRemoveOriginAccessWhitelistEntry called"); 1504 + return NULL; 1505 + } 1506 + 1507 + void* WKBundleRemoveUserScript(void) { 1508 + if (verbose) puts("STUB: WKBundleRemoveUserScript called"); 1509 + return NULL; 1510 + } 1511 + 1512 + void* WKBundleRemoveUserScripts(void) { 1513 + if (verbose) puts("STUB: WKBundleRemoveUserScripts called"); 1514 + return NULL; 1515 + } 1516 + 1517 + void* WKBundleRemoveUserStyleSheet(void) { 1518 + if (verbose) puts("STUB: WKBundleRemoveUserStyleSheet called"); 1519 + return NULL; 1520 + } 1521 + 1522 + void* WKBundleRemoveUserStyleSheets(void) { 1523 + if (verbose) puts("STUB: WKBundleRemoveUserStyleSheets called"); 1524 + return NULL; 1525 + } 1526 + 1527 + void* WKBundleReportException(void) { 1528 + if (verbose) puts("STUB: WKBundleReportException called"); 1529 + return NULL; 1530 + } 1531 + 1532 + void* WKBundleResetOriginAccessWhitelists(void) { 1533 + if (verbose) puts("STUB: WKBundleResetOriginAccessWhitelists called"); 1534 + return NULL; 1535 + } 1536 + 1537 + void* WKBundleResourceLoadStatisticsNotifyObserver(void) { 1538 + if (verbose) puts("STUB: WKBundleResourceLoadStatisticsNotifyObserver called"); 1539 + return NULL; 1540 + } 1541 + 1542 + void* WKBundleScriptWorldClearWrappers(void) { 1543 + if (verbose) puts("STUB: WKBundleScriptWorldClearWrappers called"); 1544 + return NULL; 1545 + } 1546 + 1547 + void* WKBundleScriptWorldCopyName(void) { 1548 + if (verbose) puts("STUB: WKBundleScriptWorldCopyName called"); 1549 + return NULL; 1550 + } 1551 + 1552 + void* WKBundleScriptWorldCreateWorld(void) { 1553 + if (verbose) puts("STUB: WKBundleScriptWorldCreateWorld called"); 1554 + return NULL; 1555 + } 1556 + 1557 + void* WKBundleScriptWorldGetTypeID(void) { 1558 + if (verbose) puts("STUB: WKBundleScriptWorldGetTypeID called"); 1559 + return NULL; 1560 + } 1561 + 1562 + void* WKBundleScriptWorldMakeAllShadowRootsOpen(void) { 1563 + if (verbose) puts("STUB: WKBundleScriptWorldMakeAllShadowRootsOpen called"); 1564 + return NULL; 1565 + } 1566 + 1567 + void* WKBundleScriptWorldNormalWorld(void) { 1568 + if (verbose) puts("STUB: WKBundleScriptWorldNormalWorld called"); 1569 + return NULL; 1570 + } 1571 + 1572 + void* WKBundleSetAllowFileAccessFromFileURLs(void) { 1573 + if (verbose) puts("STUB: WKBundleSetAllowFileAccessFromFileURLs called"); 1574 + return NULL; 1575 + } 1576 + 1577 + void* WKBundleSetAllowStorageAccessFromFileURLS(void) { 1578 + if (verbose) puts("STUB: WKBundleSetAllowStorageAccessFromFileURLS called"); 1579 + return NULL; 1580 + } 1581 + 1582 + void* WKBundleSetAllowUniversalAccessFromFileURLs(void) { 1583 + if (verbose) puts("STUB: WKBundleSetAllowUniversalAccessFromFileURLs called"); 1584 + return NULL; 1585 + } 1586 + 1587 + void* WKBundleSetAsyncFrameScrollingEnabled(void) { 1588 + if (verbose) puts("STUB: WKBundleSetAsyncFrameScrollingEnabled called"); 1589 + return NULL; 1590 + } 1591 + 1592 + void* WKBundleSetAsynchronousSpellCheckingEnabled(void) { 1593 + if (verbose) puts("STUB: WKBundleSetAsynchronousSpellCheckingEnabled called"); 1594 + return NULL; 1595 + } 1596 + 1597 + void* WKBundleSetAuthorAndUserStylesEnabled(void) { 1598 + if (verbose) puts("STUB: WKBundleSetAuthorAndUserStylesEnabled called"); 1599 + return NULL; 1600 + } 1601 + 1602 + void* WKBundleSetClient(void) { 1603 + if (verbose) puts("STUB: WKBundleSetClient called"); 1604 + return NULL; 1605 + } 1606 + 1607 + void* WKBundleSetDatabaseQuota(void) { 1608 + if (verbose) puts("STUB: WKBundleSetDatabaseQuota called"); 1609 + return NULL; 1610 + } 1611 + 1612 + void* WKBundleSetFrameFlatteningEnabled(void) { 1613 + if (verbose) puts("STUB: WKBundleSetFrameFlatteningEnabled called"); 1614 + return NULL; 1615 + } 1616 + 1617 + void* WKBundleSetJavaScriptCanAccessClipboard(void) { 1618 + if (verbose) puts("STUB: WKBundleSetJavaScriptCanAccessClipboard called"); 1619 + return NULL; 1620 + } 1621 + 1622 + void* WKBundleSetMinimumLogicalFontSize(void) { 1623 + if (verbose) puts("STUB: WKBundleSetMinimumLogicalFontSize called"); 1624 + return NULL; 1625 + } 1626 + 1627 + void* WKBundleSetPopupBlockingEnabled(void) { 1628 + if (verbose) puts("STUB: WKBundleSetPopupBlockingEnabled called"); 1629 + return NULL; 1630 + } 1631 + 1632 + void* WKBundleSetPrivateBrowsingEnabled(void) { 1633 + if (verbose) puts("STUB: WKBundleSetPrivateBrowsingEnabled called"); 1634 + return NULL; 1635 + } 1636 + 1637 + void* WKBundleSetServiceWorkerProxyCreationCallback(void) { 1638 + if (verbose) puts("STUB: WKBundleSetServiceWorkerProxyCreationCallback called"); 1639 + return NULL; 1640 + } 1641 + 1642 + void* WKBundleSetSpatialNavigationEnabled(void) { 1643 + if (verbose) puts("STUB: WKBundleSetSpatialNavigationEnabled called"); 1644 + return NULL; 1645 + } 1646 + 1647 + void* WKBundleSetTabKeyCyclesThroughElements(void) { 1648 + if (verbose) puts("STUB: WKBundleSetTabKeyCyclesThroughElements called"); 1649 + return NULL; 1650 + } 1651 + 1652 + void* WKBundleSetUseDashboardCompatibilityMode(void) { 1653 + if (verbose) puts("STUB: WKBundleSetUseDashboardCompatibilityMode called"); 1654 + return NULL; 1655 + } 1656 + 1657 + void* WKBundleSetUserStyleSheetLocation(void) { 1658 + if (verbose) puts("STUB: WKBundleSetUserStyleSheetLocation called"); 1659 + return NULL; 1660 + } 1661 + 1662 + void* WKBundleSetWebNotificationPermission(void) { 1663 + if (verbose) puts("STUB: WKBundleSetWebNotificationPermission called"); 1664 + return NULL; 1665 + } 1666 + 1667 + void* WKCertificateInfoCreateWithCertficateChain(void) { 1668 + if (verbose) puts("STUB: WKCertificateInfoCreateWithCertficateChain called"); 1669 + return NULL; 1670 + } 1671 + 1672 + void* WKCertificateInfoCreateWithServerTrust(void) { 1673 + if (verbose) puts("STUB: WKCertificateInfoCreateWithServerTrust called"); 1674 + return NULL; 1675 + } 1676 + 1677 + void* WKCertificateInfoGetCertificateChain(void) { 1678 + if (verbose) puts("STUB: WKCertificateInfoGetCertificateChain called"); 1679 + return NULL; 1680 + } 1681 + 1682 + void* WKCertificateInfoGetServerTrust(void) { 1683 + if (verbose) puts("STUB: WKCertificateInfoGetServerTrust called"); 1684 + return NULL; 1685 + } 1686 + 1687 + void* WKCertificateInfoGetTypeID(void) { 1688 + if (verbose) puts("STUB: WKCertificateInfoGetTypeID called"); 1689 + return NULL; 1690 + } 1691 + 1692 + void* WKConnectionGetTypeID(void) { 1693 + if (verbose) puts("STUB: WKConnectionGetTypeID called"); 1694 + return NULL; 1695 + } 1696 + 1697 + void* WKConnectionPostMessage(void) { 1698 + if (verbose) puts("STUB: WKConnectionPostMessage called"); 1699 + return NULL; 1700 + } 1701 + 1702 + void* WKConnectionSetConnectionClient(void) { 1703 + if (verbose) puts("STUB: WKConnectionSetConnectionClient called"); 1704 + return NULL; 1705 + } 1706 + 1707 + void* WKContextAddVisitedLink(void) { 1708 + if (verbose) puts("STUB: WKContextAddVisitedLink called"); 1709 + return NULL; 1710 + } 1711 + 1712 + void* WKContextAllowSpecificHTTPSCertificateForHost(void) { 1713 + if (verbose) puts("STUB: WKContextAllowSpecificHTTPSCertificateForHost called"); 1714 + return NULL; 1715 + } 1716 + 1717 + void* WKContextClearCachedCredentials(void) { 1718 + if (verbose) puts("STUB: WKContextClearCachedCredentials called"); 1719 + return NULL; 1720 + } 1721 + 1722 + void* WKContextClearPluginClientPolicies(void) { 1723 + if (verbose) puts("STUB: WKContextClearPluginClientPolicies called"); 1724 + return NULL; 1725 + } 1726 + 1727 + void* WKContextClearVisitedLinks(void) { 1728 + if (verbose) puts("STUB: WKContextClearVisitedLinks called"); 1729 + return NULL; 1730 + } 1731 + 1732 + void* WKContextConfigurationCopyApplicationCacheDirectory(void) { 1733 + if (verbose) puts("STUB: WKContextConfigurationCopyApplicationCacheDirectory called"); 1734 + return NULL; 1735 + } 1736 + 1737 + void* WKContextConfigurationCopyDiskCacheDirectory(void) { 1738 + if (verbose) puts("STUB: WKContextConfigurationCopyDiskCacheDirectory called"); 1739 + return NULL; 1740 + } 1741 + 1742 + void* WKContextConfigurationCopyIndexedDBDatabaseDirectory(void) { 1743 + if (verbose) puts("STUB: WKContextConfigurationCopyIndexedDBDatabaseDirectory called"); 1744 + return NULL; 1745 + } 1746 + 1747 + void* WKContextConfigurationCopyInjectedBundlePath(void) { 1748 + if (verbose) puts("STUB: WKContextConfigurationCopyInjectedBundlePath called"); 1749 + return NULL; 1750 + } 1751 + 1752 + void* WKContextConfigurationCopyLocalStorageDirectory(void) { 1753 + if (verbose) puts("STUB: WKContextConfigurationCopyLocalStorageDirectory called"); 1754 + return NULL; 1755 + } 1756 + 1757 + void* WKContextConfigurationCopyMediaKeysStorageDirectory(void) { 1758 + if (verbose) puts("STUB: WKContextConfigurationCopyMediaKeysStorageDirectory called"); 1759 + return NULL; 1760 + } 1761 + 1762 + void* WKContextConfigurationCopyOverrideLanguages(void) { 1763 + if (verbose) puts("STUB: WKContextConfigurationCopyOverrideLanguages called"); 1764 + return NULL; 1765 + } 1766 + 1767 + void* WKContextConfigurationCopyResourceLoadStatisticsDirectory(void) { 1768 + if (verbose) puts("STUB: WKContextConfigurationCopyResourceLoadStatisticsDirectory called"); 1769 + return NULL; 1770 + } 1771 + 1772 + void* WKContextConfigurationCopyWebSQLDatabaseDirectory(void) { 1773 + if (verbose) puts("STUB: WKContextConfigurationCopyWebSQLDatabaseDirectory called"); 1774 + return NULL; 1775 + } 1776 + 1777 + void* WKContextConfigurationCreate(void) { 1778 + if (verbose) puts("STUB: WKContextConfigurationCreate called"); 1779 + return NULL; 1780 + } 1781 + 1782 + void* WKContextConfigurationCreateWithLegacyOptions(void) { 1783 + if (verbose) puts("STUB: WKContextConfigurationCreateWithLegacyOptions called"); 1784 + return NULL; 1785 + } 1786 + 1787 + void* WKContextConfigurationFullySynchronousModeIsAllowedForTesting(void) { 1788 + if (verbose) puts("STUB: WKContextConfigurationFullySynchronousModeIsAllowedForTesting called"); 1789 + return NULL; 1790 + } 1791 + 1792 + void* WKContextConfigurationSetApplicationCacheDirectory(void) { 1793 + if (verbose) puts("STUB: WKContextConfigurationSetApplicationCacheDirectory called"); 1794 + return NULL; 1795 + } 1796 + 1797 + void* WKContextConfigurationSetDiskCacheDirectory(void) { 1798 + if (verbose) puts("STUB: WKContextConfigurationSetDiskCacheDirectory called"); 1799 + return NULL; 1800 + } 1801 + 1802 + void* WKContextConfigurationSetFullySynchronousModeIsAllowedForTesting(void) { 1803 + if (verbose) puts("STUB: WKContextConfigurationSetFullySynchronousModeIsAllowedForTesting called"); 1804 + return NULL; 1805 + } 1806 + 1807 + void* WKContextConfigurationSetIndexedDBDatabaseDirectory(void) { 1808 + if (verbose) puts("STUB: WKContextConfigurationSetIndexedDBDatabaseDirectory called"); 1809 + return NULL; 1810 + } 1811 + 1812 + void* WKContextConfigurationSetInjectedBundlePath(void) { 1813 + if (verbose) puts("STUB: WKContextConfigurationSetInjectedBundlePath called"); 1814 + return NULL; 1815 + } 1816 + 1817 + void* WKContextConfigurationSetLocalStorageDirectory(void) { 1818 + if (verbose) puts("STUB: WKContextConfigurationSetLocalStorageDirectory called"); 1819 + return NULL; 1820 + } 1821 + 1822 + void* WKContextConfigurationSetMediaKeysStorageDirectory(void) { 1823 + if (verbose) puts("STUB: WKContextConfigurationSetMediaKeysStorageDirectory called"); 1824 + return NULL; 1825 + } 1826 + 1827 + void* WKContextConfigurationSetOverrideLanguages(void) { 1828 + if (verbose) puts("STUB: WKContextConfigurationSetOverrideLanguages called"); 1829 + return NULL; 1830 + } 1831 + 1832 + void* WKContextConfigurationSetResourceLoadStatisticsDirectory(void) { 1833 + if (verbose) puts("STUB: WKContextConfigurationSetResourceLoadStatisticsDirectory called"); 1834 + return NULL; 1835 + } 1836 + 1837 + void* WKContextConfigurationSetShouldCaptureAudioInUIProcess(void) { 1838 + if (verbose) puts("STUB: WKContextConfigurationSetShouldCaptureAudioInUIProcess called"); 1839 + return NULL; 1840 + } 1841 + 1842 + void* WKContextConfigurationSetWebSQLDatabaseDirectory(void) { 1843 + if (verbose) puts("STUB: WKContextConfigurationSetWebSQLDatabaseDirectory called"); 1844 + return NULL; 1845 + } 1846 + 1847 + void* WKContextConfigurationShouldCaptureAudioInUIProcess(void) { 1848 + if (verbose) puts("STUB: WKContextConfigurationShouldCaptureAudioInUIProcess called"); 1849 + return NULL; 1850 + } 1851 + 1852 + void* WKContextCopyPlugInAutoStartOriginHashes(void) { 1853 + if (verbose) puts("STUB: WKContextCopyPlugInAutoStartOriginHashes called"); 1854 + return NULL; 1855 + } 1856 + 1857 + void* WKContextCopyPlugInInfoForBundleIdentifier(void) { 1858 + if (verbose) puts("STUB: WKContextCopyPlugInInfoForBundleIdentifier called"); 1859 + return NULL; 1860 + } 1861 + 1862 + void* WKContextCreate(void) { 1863 + if (verbose) puts("STUB: WKContextCreate called"); 1864 + return NULL; 1865 + } 1866 + 1867 + void* WKContextCreateWithConfiguration(void) { 1868 + if (verbose) puts("STUB: WKContextCreateWithConfiguration called"); 1869 + return NULL; 1870 + } 1871 + 1872 + void* WKContextCreateWithInjectedBundlePath(void) { 1873 + if (verbose) puts("STUB: WKContextCreateWithInjectedBundlePath called"); 1874 + return NULL; 1875 + } 1876 + 1877 + void* WKContextDisableProcessTermination(void) { 1878 + if (verbose) puts("STUB: WKContextDisableProcessTermination called"); 1879 + return NULL; 1880 + } 1881 + 1882 + void* WKContextDownloadURLRequest(void) { 1883 + if (verbose) puts("STUB: WKContextDownloadURLRequest called"); 1884 + return NULL; 1885 + } 1886 + 1887 + void* WKContextEnableProcessTermination(void) { 1888 + if (verbose) puts("STUB: WKContextEnableProcessTermination called"); 1889 + return NULL; 1890 + } 1891 + 1892 + void* WKContextGarbageCollectJavaScriptObjects(void) { 1893 + if (verbose) puts("STUB: WKContextGarbageCollectJavaScriptObjects called"); 1894 + return NULL; 1895 + } 1896 + 1897 + void* WKContextGetApplicationCacheManager(void) { 1898 + if (verbose) puts("STUB: WKContextGetApplicationCacheManager called"); 1899 + return NULL; 1900 + } 1901 + 1902 + void* WKContextGetCacheModel(void) { 1903 + if (verbose) puts("STUB: WKContextGetCacheModel called"); 1904 + return NULL; 1905 + } 1906 + 1907 + void* WKContextGetCookieManager(void) { 1908 + if (verbose) puts("STUB: WKContextGetCookieManager called"); 1909 + return NULL; 1910 + } 1911 + 1912 + void* WKContextGetDatabaseProcessIdentifier(void) { 1913 + if (verbose) puts("STUB: WKContextGetDatabaseProcessIdentifier called"); 1914 + return NULL; 1915 + } 1916 + 1917 + void* WKContextGetGeolocationManager(void) { 1918 + if (verbose) puts("STUB: WKContextGetGeolocationManager called"); 1919 + return NULL; 1920 + } 1921 + 1922 + void* WKContextGetGlobalStatistics(void) { 1923 + if (verbose) puts("STUB: WKContextGetGlobalStatistics called"); 1924 + return NULL; 1925 + } 1926 + 1927 + void* WKContextGetIconDatabase(void) { 1928 + if (verbose) puts("STUB: WKContextGetIconDatabase called"); 1929 + return NULL; 1930 + } 1931 + 1932 + void* WKContextGetInfoForInstalledPlugIns(void) { 1933 + if (verbose) puts("STUB: WKContextGetInfoForInstalledPlugIns called"); 1934 + return NULL; 1935 + } 1936 + 1937 + void* WKContextGetKeyValueStorageManager(void) { 1938 + if (verbose) puts("STUB: WKContextGetKeyValueStorageManager called"); 1939 + return NULL; 1940 + } 1941 + 1942 + void* WKContextGetMaximumNumberOfProcesses(void) { 1943 + if (verbose) puts("STUB: WKContextGetMaximumNumberOfProcesses called"); 1944 + return NULL; 1945 + } 1946 + 1947 + void* WKContextGetMediaSessionFocusManager(void) { 1948 + if (verbose) puts("STUB: WKContextGetMediaSessionFocusManager called"); 1949 + return NULL; 1950 + } 1951 + 1952 + void* WKContextGetNetworkProcessIdentifier(void) { 1953 + if (verbose) puts("STUB: WKContextGetNetworkProcessIdentifier called"); 1954 + return NULL; 1955 + } 1956 + 1957 + void* WKContextGetNotificationManager(void) { 1958 + if (verbose) puts("STUB: WKContextGetNotificationManager called"); 1959 + return NULL; 1960 + } 1961 + 1962 + void* WKContextGetResourceCacheManager(void) { 1963 + if (verbose) puts("STUB: WKContextGetResourceCacheManager called"); 1964 + return NULL; 1965 + } 1966 + 1967 + void* WKContextGetStatistics(void) { 1968 + if (verbose) puts("STUB: WKContextGetStatistics called"); 1969 + return NULL; 1970 + } 1971 + 1972 + void* WKContextGetStatisticsWithOptions(void) { 1973 + if (verbose) puts("STUB: WKContextGetStatisticsWithOptions called"); 1974 + return NULL; 1975 + } 1976 + 1977 + void* WKContextGetTypeID(void) { 1978 + if (verbose) puts("STUB: WKContextGetTypeID called"); 1979 + return NULL; 1980 + } 1981 + 1982 + void* WKContextGetWebsiteDataStore(void) { 1983 + if (verbose) puts("STUB: WKContextGetWebsiteDataStore called"); 1984 + return NULL; 1985 + } 1986 + 1987 + void* WKContextIsPlugInUpdateAvailable(void) { 1988 + if (verbose) puts("STUB: WKContextIsPlugInUpdateAvailable called"); 1989 + return NULL; 1990 + } 1991 + 1992 + void* WKContextJavaScriptConfigurationFileEnabled(void) { 1993 + if (verbose) puts("STUB: WKContextJavaScriptConfigurationFileEnabled called"); 1994 + return NULL; 1995 + } 1996 + 1997 + void* WKContextMenuCopySubmenuItems(void) { 1998 + if (verbose) puts("STUB: WKContextMenuCopySubmenuItems called"); 1999 + return NULL; 2000 + } 2001 + 2002 + void* WKContextMenuItemCopyTitle(void) { 2003 + if (verbose) puts("STUB: WKContextMenuItemCopyTitle called"); 2004 + return NULL; 2005 + } 2006 + 2007 + void* WKContextMenuItemCreateAsAction(void) { 2008 + if (verbose) puts("STUB: WKContextMenuItemCreateAsAction called"); 2009 + return NULL; 2010 + } 2011 + 2012 + void* WKContextMenuItemCreateAsCheckableAction(void) { 2013 + if (verbose) puts("STUB: WKContextMenuItemCreateAsCheckableAction called"); 2014 + return NULL; 2015 + } 2016 + 2017 + void* WKContextMenuItemCreateAsSubmenu(void) { 2018 + if (verbose) puts("STUB: WKContextMenuItemCreateAsSubmenu called"); 2019 + return NULL; 2020 + } 2021 + 2022 + void* WKContextMenuItemGetChecked(void) { 2023 + if (verbose) puts("STUB: WKContextMenuItemGetChecked called"); 2024 + return NULL; 2025 + } 2026 + 2027 + void* WKContextMenuItemGetEnabled(void) { 2028 + if (verbose) puts("STUB: WKContextMenuItemGetEnabled called"); 2029 + return NULL; 2030 + } 2031 + 2032 + void* WKContextMenuItemGetTag(void) { 2033 + if (verbose) puts("STUB: WKContextMenuItemGetTag called"); 2034 + return NULL; 2035 + } 2036 + 2037 + void* WKContextMenuItemGetType(void) { 2038 + if (verbose) puts("STUB: WKContextMenuItemGetType called"); 2039 + return NULL; 2040 + } 2041 + 2042 + void* WKContextMenuItemGetTypeID(void) { 2043 + if (verbose) puts("STUB: WKContextMenuItemGetTypeID called"); 2044 + return NULL; 2045 + } 2046 + 2047 + void* WKContextMenuItemGetUserData(void) { 2048 + if (verbose) puts("STUB: WKContextMenuItemGetUserData called"); 2049 + return NULL; 2050 + } 2051 + 2052 + void* WKContextMenuItemSeparatorItem(void) { 2053 + if (verbose) puts("STUB: WKContextMenuItemSeparatorItem called"); 2054 + return NULL; 2055 + } 2056 + 2057 + void* WKContextMenuItemSetUserData(void) { 2058 + if (verbose) puts("STUB: WKContextMenuItemSetUserData called"); 2059 + return NULL; 2060 + } 2061 + 2062 + void* WKContextMenuListenerGetTypeID(void) { 2063 + if (verbose) puts("STUB: WKContextMenuListenerGetTypeID called"); 2064 + return NULL; 2065 + } 2066 + 2067 + void* WKContextMenuListenerUseContextMenuItems(void) { 2068 + if (verbose) puts("STUB: WKContextMenuListenerUseContextMenuItems called"); 2069 + return NULL; 2070 + } 2071 + 2072 + void* WKContextPostMessageToInjectedBundle(void) { 2073 + if (verbose) puts("STUB: WKContextPostMessageToInjectedBundle called"); 2074 + return NULL; 2075 + } 2076 + 2077 + void* WKContextPreconnectToServer(void) { 2078 + if (verbose) puts("STUB: WKContextPreconnectToServer called"); 2079 + return NULL; 2080 + } 2081 + 2082 + void* WKContextRefreshPlugIns(void) { 2083 + if (verbose) puts("STUB: WKContextRefreshPlugIns called"); 2084 + return NULL; 2085 + } 2086 + 2087 + void* WKContextRegisterSchemeForCustomProtocol(void) { 2088 + if (verbose) puts("STUB: WKContextRegisterSchemeForCustomProtocol called"); 2089 + return NULL; 2090 + } 2091 + 2092 + void* WKContextRegisterURLSchemeAsBypassingContentSecurityPolicy(void) { 2093 + if (verbose) puts("STUB: WKContextRegisterURLSchemeAsBypassingContentSecurityPolicy called"); 2094 + return NULL; 2095 + } 2096 + 2097 + void* WKContextRegisterURLSchemeAsCachePartitioned(void) { 2098 + if (verbose) puts("STUB: WKContextRegisterURLSchemeAsCachePartitioned called"); 2099 + return NULL; 2100 + } 2101 + 2102 + void* WKContextRegisterURLSchemeAsEmptyDocument(void) { 2103 + if (verbose) puts("STUB: WKContextRegisterURLSchemeAsEmptyDocument called"); 2104 + return NULL; 2105 + } 2106 + 2107 + void* WKContextRegisterURLSchemeAsSecure(void) { 2108 + if (verbose) puts("STUB: WKContextRegisterURLSchemeAsSecure called"); 2109 + return NULL; 2110 + } 2111 + 2112 + void* WKContextResetHSTSHosts(void) { 2113 + if (verbose) puts("STUB: WKContextResetHSTSHosts called"); 2114 + return NULL; 2115 + } 2116 + 2117 + void* WKContextResetHSTSHostsAddedAfterDate(void) { 2118 + if (verbose) puts("STUB: WKContextResetHSTSHostsAddedAfterDate called"); 2119 + return NULL; 2120 + } 2121 + 2122 + void* WKContextResumeDownload(void) { 2123 + if (verbose) puts("STUB: WKContextResumeDownload called"); 2124 + return NULL; 2125 + } 2126 + 2127 + void* WKContextSetAdditionalPluginsDirectory(void) { 2128 + if (verbose) puts("STUB: WKContextSetAdditionalPluginsDirectory called"); 2129 + return NULL; 2130 + } 2131 + 2132 + void* WKContextSetAllowsAnySSLCertificateForServiceWorkerTesting(void) { 2133 + if (verbose) puts("STUB: WKContextSetAllowsAnySSLCertificateForServiceWorkerTesting called"); 2134 + return NULL; 2135 + } 2136 + 2137 + void* WKContextSetAllowsAnySSLCertificateForWebSocketTesting(void) { 2138 + if (verbose) puts("STUB: WKContextSetAllowsAnySSLCertificateForWebSocketTesting called"); 2139 + return NULL; 2140 + } 2141 + 2142 + void* WKContextSetAlwaysUsesComplexTextCodePath(void) { 2143 + if (verbose) puts("STUB: WKContextSetAlwaysUsesComplexTextCodePath called"); 2144 + return NULL; 2145 + } 2146 + 2147 + void* WKContextSetCacheModel(void) { 2148 + if (verbose) puts("STUB: WKContextSetCacheModel called"); 2149 + return NULL; 2150 + } 2151 + 2152 + void* WKContextSetCanHandleHTTPSServerTrustEvaluation(void) { 2153 + if (verbose) puts("STUB: WKContextSetCanHandleHTTPSServerTrustEvaluation called"); 2154 + return NULL; 2155 + } 2156 + 2157 + void* WKContextSetClient(void) { 2158 + if (verbose) puts("STUB: WKContextSetClient called"); 2159 + return NULL; 2160 + } 2161 + 2162 + void* WKContextSetConnectionClient(void) { 2163 + if (verbose) puts("STUB: WKContextSetConnectionClient called"); 2164 + return NULL; 2165 + } 2166 + 2167 + void* WKContextSetCookieStorageDirectory(void) { 2168 + if (verbose) puts("STUB: WKContextSetCookieStorageDirectory called"); 2169 + return NULL; 2170 + } 2171 + 2172 + void* WKContextSetDiskCacheSpeculativeValidationEnabled(void) { 2173 + if (verbose) puts("STUB: WKContextSetDiskCacheSpeculativeValidationEnabled called"); 2174 + return NULL; 2175 + } 2176 + 2177 + void* WKContextSetDomainRelaxationForbiddenForURLScheme(void) { 2178 + if (verbose) puts("STUB: WKContextSetDomainRelaxationForbiddenForURLScheme called"); 2179 + return NULL; 2180 + } 2181 + 2182 + void* WKContextSetDownloadClient(void) { 2183 + if (verbose) puts("STUB: WKContextSetDownloadClient called"); 2184 + return NULL; 2185 + } 2186 + 2187 + void* WKContextSetFontWhitelist(void) { 2188 + if (verbose) puts("STUB: WKContextSetFontWhitelist called"); 2189 + return NULL; 2190 + } 2191 + 2192 + void* WKContextSetHTTPPipeliningEnabled(void) { 2193 + if (verbose) puts("STUB: WKContextSetHTTPPipeliningEnabled called"); 2194 + return NULL; 2195 + } 2196 + 2197 + void* WKContextSetHistoryClient(void) { 2198 + if (verbose) puts("STUB: WKContextSetHistoryClient called"); 2199 + return NULL; 2200 + } 2201 + 2202 + void* WKContextSetIconDatabasePath(void) { 2203 + if (verbose) puts("STUB: WKContextSetIconDatabasePath called"); 2204 + return NULL; 2205 + } 2206 + 2207 + void* WKContextSetInitializationUserDataForInjectedBundle(void) { 2208 + if (verbose) puts("STUB: WKContextSetInitializationUserDataForInjectedBundle called"); 2209 + return NULL; 2210 + } 2211 + 2212 + void* WKContextSetInjectedBundleClient(void) { 2213 + if (verbose) puts("STUB: WKContextSetInjectedBundleClient called"); 2214 + return NULL; 2215 + } 2216 + 2217 + void* WKContextSetInvalidMessageFunction(void) { 2218 + if (verbose) puts("STUB: WKContextSetInvalidMessageFunction called"); 2219 + return NULL; 2220 + } 2221 + 2222 + void* WKContextSetJavaScriptConfigurationFileEnabled(void) { 2223 + if (verbose) puts("STUB: WKContextSetJavaScriptConfigurationFileEnabled called"); 2224 + return NULL; 2225 + } 2226 + 2227 + void* WKContextSetJavaScriptGarbageCollectorTimerEnabled(void) { 2228 + if (verbose) puts("STUB: WKContextSetJavaScriptGarbageCollectorTimerEnabled called"); 2229 + return NULL; 2230 + } 2231 + 2232 + void* WKContextSetMaximumNumberOfProcesses(void) { 2233 + if (verbose) puts("STUB: WKContextSetMaximumNumberOfProcesses called"); 2234 + return NULL; 2235 + } 2236 + 2237 + void* WKContextSetMemoryCacheDisabled(void) { 2238 + if (verbose) puts("STUB: WKContextSetMemoryCacheDisabled called"); 2239 + return NULL; 2240 + } 2241 + 2242 + void* WKContextSetPlugInAutoStartOriginHashes(void) { 2243 + if (verbose) puts("STUB: WKContextSetPlugInAutoStartOriginHashes called"); 2244 + return NULL; 2245 + } 2246 + 2247 + void* WKContextSetPlugInAutoStartOrigins(void) { 2248 + if (verbose) puts("STUB: WKContextSetPlugInAutoStartOrigins called"); 2249 + return NULL; 2250 + } 2251 + 2252 + void* WKContextSetPlugInAutoStartOriginsFilteringOutEntriesAddedAfterTime(void) { 2253 + if (verbose) puts("STUB: WKContextSetPlugInAutoStartOriginsFilteringOutEntriesAddedAfterTime called"); 2254 + return NULL; 2255 + } 2256 + 2257 + void* WKContextSetPluginLoadClientPolicy(void) { 2258 + if (verbose) puts("STUB: WKContextSetPluginLoadClientPolicy called"); 2259 + return NULL; 2260 + } 2261 + 2262 + void* WKContextSetProcessModel(void) { 2263 + if (verbose) puts("STUB: WKContextSetProcessModel called"); 2264 + return NULL; 2265 + } 2266 + 2267 + void* WKContextSetShouldUseFontSmoothing(void) { 2268 + if (verbose) puts("STUB: WKContextSetShouldUseFontSmoothing called"); 2269 + return NULL; 2270 + } 2271 + 2272 + void* WKContextSetUsesNetworkProcess(void) { 2273 + if (verbose) puts("STUB: WKContextSetUsesNetworkProcess called"); 2274 + return NULL; 2275 + } 2276 + 2277 + void* WKContextShouldBlockWebGL(void) { 2278 + if (verbose) puts("STUB: WKContextShouldBlockWebGL called"); 2279 + return NULL; 2280 + } 2281 + 2282 + void* WKContextShouldSuggestBlockWebGL(void) { 2283 + if (verbose) puts("STUB: WKContextShouldSuggestBlockWebGL called"); 2284 + return NULL; 2285 + } 2286 + 2287 + void* WKContextStartMemorySampler(void) { 2288 + if (verbose) puts("STUB: WKContextStartMemorySampler called"); 2289 + return NULL; 2290 + } 2291 + 2292 + void* WKContextStopMemorySampler(void) { 2293 + if (verbose) puts("STUB: WKContextStopMemorySampler called"); 2294 + return NULL; 2295 + } 2296 + 2297 + void* WKContextTerminateNetworkProcess(void) { 2298 + if (verbose) puts("STUB: WKContextTerminateNetworkProcess called"); 2299 + return NULL; 2300 + } 2301 + 2302 + void* WKContextTerminateServiceWorkerProcess(void) { 2303 + if (verbose) puts("STUB: WKContextTerminateServiceWorkerProcess called"); 2304 + return NULL; 2305 + } 2306 + 2307 + void* WKContextUnregisterSchemeForCustomProtocol(void) { 2308 + if (verbose) puts("STUB: WKContextUnregisterSchemeForCustomProtocol called"); 2309 + return NULL; 2310 + } 2311 + 2312 + void* WKContextUseTestingNetworkSession(void) { 2313 + if (verbose) puts("STUB: WKContextUseTestingNetworkSession called"); 2314 + return NULL; 2315 + } 2316 + 2317 + void* WKContextWarmInitialProcess(void) { 2318 + if (verbose) puts("STUB: WKContextWarmInitialProcess called"); 2319 + return NULL; 2320 + } 2321 + 2322 + void* WKCookieManagerDeleteAllCookies(void) { 2323 + if (verbose) puts("STUB: WKCookieManagerDeleteAllCookies called"); 2324 + return NULL; 2325 + } 2326 + 2327 + void* WKCookieManagerDeleteAllCookiesModifiedAfterDate(void) { 2328 + if (verbose) puts("STUB: WKCookieManagerDeleteAllCookiesModifiedAfterDate called"); 2329 + return NULL; 2330 + } 2331 + 2332 + void* WKCookieManagerDeleteCookiesForHostname(void) { 2333 + if (verbose) puts("STUB: WKCookieManagerDeleteCookiesForHostname called"); 2334 + return NULL; 2335 + } 2336 + 2337 + void* WKCookieManagerGetHTTPCookieAcceptPolicy(void) { 2338 + if (verbose) puts("STUB: WKCookieManagerGetHTTPCookieAcceptPolicy called"); 2339 + return NULL; 2340 + } 2341 + 2342 + void* WKCookieManagerGetHostnamesWithCookies(void) { 2343 + if (verbose) puts("STUB: WKCookieManagerGetHostnamesWithCookies called"); 2344 + return NULL; 2345 + } 2346 + 2347 + void* WKCookieManagerGetTypeID(void) { 2348 + if (verbose) puts("STUB: WKCookieManagerGetTypeID called"); 2349 + return NULL; 2350 + } 2351 + 2352 + void* WKCookieManagerSetClient(void) { 2353 + if (verbose) puts("STUB: WKCookieManagerSetClient called"); 2354 + return NULL; 2355 + } 2356 + 2357 + void* WKCookieManagerSetCookieStoragePartitioningEnabled(void) { 2358 + if (verbose) puts("STUB: WKCookieManagerSetCookieStoragePartitioningEnabled called"); 2359 + return NULL; 2360 + } 2361 + 2362 + void* WKCookieManagerSetHTTPCookieAcceptPolicy(void) { 2363 + if (verbose) puts("STUB: WKCookieManagerSetHTTPCookieAcceptPolicy called"); 2364 + return NULL; 2365 + } 2366 + 2367 + void* WKCookieManagerSetStorageAccessAPIEnabled(void) { 2368 + if (verbose) puts("STUB: WKCookieManagerSetStorageAccessAPIEnabled called"); 2369 + return NULL; 2370 + } 2371 + 2372 + void* WKCookieManagerStartObservingCookieChanges(void) { 2373 + if (verbose) puts("STUB: WKCookieManagerStartObservingCookieChanges called"); 2374 + return NULL; 2375 + } 2376 + 2377 + void* WKCookieManagerStopObservingCookieChanges(void) { 2378 + if (verbose) puts("STUB: WKCookieManagerStopObservingCookieChanges called"); 2379 + return NULL; 2380 + } 2381 + 2382 + void* WKCredentialCopyUser(void) { 2383 + if (verbose) puts("STUB: WKCredentialCopyUser called"); 2384 + return NULL; 2385 + } 2386 + 2387 + void* WKCredentialCreate(void) { 2388 + if (verbose) puts("STUB: WKCredentialCreate called"); 2389 + return NULL; 2390 + } 2391 + 2392 + void* WKCredentialCreateWithCertificateInfo(void) { 2393 + if (verbose) puts("STUB: WKCredentialCreateWithCertificateInfo called"); 2394 + return NULL; 2395 + } 2396 + 2397 + void* WKCredentialGetTypeID(void) { 2398 + if (verbose) puts("STUB: WKCredentialGetTypeID called"); 2399 + return NULL; 2400 + } 2401 + 2402 + void* WKDataCreate(void) { 2403 + if (verbose) puts("STUB: WKDataCreate called"); 2404 + return NULL; 2405 + } 2406 + 2407 + void* WKDataGetBytes(void) { 2408 + if (verbose) puts("STUB: WKDataGetBytes called"); 2409 + return NULL; 2410 + } 2411 + 2412 + void* WKDataGetSize(void) { 2413 + if (verbose) puts("STUB: WKDataGetSize called"); 2414 + return NULL; 2415 + } 2416 + 2417 + void* WKDataGetTypeID(void) { 2418 + if (verbose) puts("STUB: WKDataGetTypeID called"); 2419 + return NULL; 2420 + } 2421 + 2422 + void* WKDictionaryCopyKeys(void) { 2423 + if (verbose) puts("STUB: WKDictionaryCopyKeys called"); 2424 + return NULL; 2425 + } 2426 + 2427 + void* WKDictionaryCreate(void) { 2428 + if (verbose) puts("STUB: WKDictionaryCreate called"); 2429 + return NULL; 2430 + } 2431 + 2432 + void* WKDictionaryGetItemForKey(void) { 2433 + if (verbose) puts("STUB: WKDictionaryGetItemForKey called"); 2434 + return NULL; 2435 + } 2436 + 2437 + void* WKDictionaryGetSize(void) { 2438 + if (verbose) puts("STUB: WKDictionaryGetSize called"); 2439 + return NULL; 2440 + } 2441 + 2442 + void* WKDictionaryGetTypeID(void) { 2443 + if (verbose) puts("STUB: WKDictionaryGetTypeID called"); 2444 + return NULL; 2445 + } 2446 + 2447 + void* WKDictionarySetItem(void) { 2448 + if (verbose) puts("STUB: WKDictionarySetItem called"); 2449 + return NULL; 2450 + } 2451 + 2452 + void* WKDoubleCreate(void) { 2453 + if (verbose) puts("STUB: WKDoubleCreate called"); 2454 + return NULL; 2455 + } 2456 + 2457 + void* WKDoubleGetTypeID(void) { 2458 + if (verbose) puts("STUB: WKDoubleGetTypeID called"); 2459 + return NULL; 2460 + } 2461 + 2462 + void* WKDoubleGetValue(void) { 2463 + if (verbose) puts("STUB: WKDoubleGetValue called"); 2464 + return NULL; 2465 + } 2466 + 2467 + void* WKDownloadCancel(void) { 2468 + if (verbose) puts("STUB: WKDownloadCancel called"); 2469 + return NULL; 2470 + } 2471 + 2472 + void* WKDownloadCopyRedirectChain(void) { 2473 + if (verbose) puts("STUB: WKDownloadCopyRedirectChain called"); 2474 + return NULL; 2475 + } 2476 + 2477 + void* WKDownloadCopyRequest(void) { 2478 + if (verbose) puts("STUB: WKDownloadCopyRequest called"); 2479 + return NULL; 2480 + } 2481 + 2482 + void* WKDownloadGetID(void) { 2483 + if (verbose) puts("STUB: WKDownloadGetID called"); 2484 + return NULL; 2485 + } 2486 + 2487 + void* WKDownloadGetOriginatingPage(void) { 2488 + if (verbose) puts("STUB: WKDownloadGetOriginatingPage called"); 2489 + return NULL; 2490 + } 2491 + 2492 + void* WKDownloadGetResumeData(void) { 2493 + if (verbose) puts("STUB: WKDownloadGetResumeData called"); 2494 + return NULL; 2495 + } 2496 + 2497 + void* WKDownloadGetTypeID(void) { 2498 + if (verbose) puts("STUB: WKDownloadGetTypeID called"); 2499 + return NULL; 2500 + } 2501 + 2502 + void* WKDownloadGetWasUserInitiated(void) { 2503 + if (verbose) puts("STUB: WKDownloadGetWasUserInitiated called"); 2504 + return NULL; 2505 + } 2506 + 2507 + void* WKErrorCopyCFError(void) { 2508 + if (verbose) puts("STUB: WKErrorCopyCFError called"); 2509 + return NULL; 2510 + } 2511 + 2512 + void* WKErrorCopyDomain(void) { 2513 + if (verbose) puts("STUB: WKErrorCopyDomain called"); 2514 + return NULL; 2515 + } 2516 + 2517 + void* WKErrorCopyFailingURL(void) { 2518 + if (verbose) puts("STUB: WKErrorCopyFailingURL called"); 2519 + return NULL; 2520 + } 2521 + 2522 + void* WKErrorCopyLocalizedDescription(void) { 2523 + if (verbose) puts("STUB: WKErrorCopyLocalizedDescription called"); 2524 + return NULL; 2525 + } 2526 + 2527 + void* WKErrorCopyWKErrorDomain(void) { 2528 + if (verbose) puts("STUB: WKErrorCopyWKErrorDomain called"); 2529 + return NULL; 2530 + } 2531 + 2532 + void* WKErrorCreateWithCFError(void) { 2533 + if (verbose) puts("STUB: WKErrorCreateWithCFError called"); 2534 + return NULL; 2535 + } 2536 + 2537 + void* WKErrorGetErrorCode(void) { 2538 + if (verbose) puts("STUB: WKErrorGetErrorCode called"); 2539 + return NULL; 2540 + } 2541 + 2542 + void* WKErrorGetTypeID(void) { 2543 + if (verbose) puts("STUB: WKErrorGetTypeID called"); 2544 + return NULL; 2545 + } 2546 + 2547 + void* WKFormSubmissionListenerContinue(void) { 2548 + if (verbose) puts("STUB: WKFormSubmissionListenerContinue called"); 2549 + return NULL; 2550 + } 2551 + 2552 + void* WKFormSubmissionListenerGetTypeID(void) { 2553 + if (verbose) puts("STUB: WKFormSubmissionListenerGetTypeID called"); 2554 + return NULL; 2555 + } 2556 + 2557 + void* WKFrameCanProvideSource(void) { 2558 + if (verbose) puts("STUB: WKFrameCanProvideSource called"); 2559 + return NULL; 2560 + } 2561 + 2562 + void* WKFrameCanShowMIMEType(void) { 2563 + if (verbose) puts("STUB: WKFrameCanShowMIMEType called"); 2564 + return NULL; 2565 + } 2566 + 2567 + void* WKFrameCopyMIMEType(void) { 2568 + if (verbose) puts("STUB: WKFrameCopyMIMEType called"); 2569 + return NULL; 2570 + } 2571 + 2572 + void* WKFrameCopyProvisionalURL(void) { 2573 + if (verbose) puts("STUB: WKFrameCopyProvisionalURL called"); 2574 + return NULL; 2575 + } 2576 + 2577 + void* WKFrameCopyTitle(void) { 2578 + if (verbose) puts("STUB: WKFrameCopyTitle called"); 2579 + return NULL; 2580 + } 2581 + 2582 + void* WKFrameCopyURL(void) { 2583 + if (verbose) puts("STUB: WKFrameCopyURL called"); 2584 + return NULL; 2585 + } 2586 + 2587 + void* WKFrameCopyUnreachableURL(void) { 2588 + if (verbose) puts("STUB: WKFrameCopyUnreachableURL called"); 2589 + return NULL; 2590 + } 2591 + 2592 + void* WKFrameCreateFrameHandle(void) { 2593 + if (verbose) puts("STUB: WKFrameCreateFrameHandle called"); 2594 + return NULL; 2595 + } 2596 + 2597 + void* WKFrameCreateFrameInfo(void) { 2598 + if (verbose) puts("STUB: WKFrameCreateFrameInfo called"); 2599 + return NULL; 2600 + } 2601 + 2602 + void* WKFrameGetCertificateInfo(void) { 2603 + if (verbose) puts("STUB: WKFrameGetCertificateInfo called"); 2604 + return NULL; 2605 + } 2606 + 2607 + void* WKFrameGetFrameLoadState(void) { 2608 + if (verbose) puts("STUB: WKFrameGetFrameLoadState called"); 2609 + return NULL; 2610 + } 2611 + 2612 + void* WKFrameGetMainResourceData(void) { 2613 + if (verbose) puts("STUB: WKFrameGetMainResourceData called"); 2614 + return NULL; 2615 + } 2616 + 2617 + void* WKFrameGetPage(void) { 2618 + if (verbose) puts("STUB: WKFrameGetPage called"); 2619 + return NULL; 2620 + } 2621 + 2622 + void* WKFrameGetResourceData(void) { 2623 + if (verbose) puts("STUB: WKFrameGetResourceData called"); 2624 + return NULL; 2625 + } 2626 + 2627 + void* WKFrameGetTypeID(void) { 2628 + if (verbose) puts("STUB: WKFrameGetTypeID called"); 2629 + return NULL; 2630 + } 2631 + 2632 + void* WKFrameGetWebArchive(void) { 2633 + if (verbose) puts("STUB: WKFrameGetWebArchive called"); 2634 + return NULL; 2635 + } 2636 + 2637 + void* WKFrameHandleGetFrameID(void) { 2638 + if (verbose) puts("STUB: WKFrameHandleGetFrameID called"); 2639 + return NULL; 2640 + } 2641 + 2642 + void* WKFrameHandleGetTypeID(void) { 2643 + if (verbose) puts("STUB: WKFrameHandleGetTypeID called"); 2644 + return NULL; 2645 + } 2646 + 2647 + void* WKFrameInfoGetFrameHandleRef(void) { 2648 + if (verbose) puts("STUB: WKFrameInfoGetFrameHandleRef called"); 2649 + return NULL; 2650 + } 2651 + 2652 + void* WKFrameInfoGetTypeID(void) { 2653 + if (verbose) puts("STUB: WKFrameInfoGetTypeID called"); 2654 + return NULL; 2655 + } 2656 + 2657 + void* WKFrameIsDisplayingMarkupDocument(void) { 2658 + if (verbose) puts("STUB: WKFrameIsDisplayingMarkupDocument called"); 2659 + return NULL; 2660 + } 2661 + 2662 + void* WKFrameIsDisplayingStandaloneImageDocument(void) { 2663 + if (verbose) puts("STUB: WKFrameIsDisplayingStandaloneImageDocument called"); 2664 + return NULL; 2665 + } 2666 + 2667 + void* WKFrameIsFrameSet(void) { 2668 + if (verbose) puts("STUB: WKFrameIsFrameSet called"); 2669 + return NULL; 2670 + } 2671 + 2672 + void* WKFrameIsMainFrame(void) { 2673 + if (verbose) puts("STUB: WKFrameIsMainFrame called"); 2674 + return NULL; 2675 + } 2676 + 2677 + void* WKFramePolicyListenerDownload(void) { 2678 + if (verbose) puts("STUB: WKFramePolicyListenerDownload called"); 2679 + return NULL; 2680 + } 2681 + 2682 + void* WKFramePolicyListenerGetTypeID(void) { 2683 + if (verbose) puts("STUB: WKFramePolicyListenerGetTypeID called"); 2684 + return NULL; 2685 + } 2686 + 2687 + void* WKFramePolicyListenerIgnore(void) { 2688 + if (verbose) puts("STUB: WKFramePolicyListenerIgnore called"); 2689 + return NULL; 2690 + } 2691 + 2692 + void* WKFramePolicyListenerUse(void) { 2693 + if (verbose) puts("STUB: WKFramePolicyListenerUse called"); 2694 + return NULL; 2695 + } 2696 + 2697 + void* WKFramePolicyListenerUseWithPolicies(void) { 2698 + if (verbose) puts("STUB: WKFramePolicyListenerUseWithPolicies called"); 2699 + return NULL; 2700 + } 2701 + 2702 + void* WKFrameStopLoading(void) { 2703 + if (verbose) puts("STUB: WKFrameStopLoading called"); 2704 + return NULL; 2705 + } 2706 + 2707 + void* WKGeolocationManagerGetTypeID(void) { 2708 + if (verbose) puts("STUB: WKGeolocationManagerGetTypeID called"); 2709 + return NULL; 2710 + } 2711 + 2712 + void* WKGeolocationManagerProviderDidChangePosition(void) { 2713 + if (verbose) puts("STUB: WKGeolocationManagerProviderDidChangePosition called"); 2714 + return NULL; 2715 + } 2716 + 2717 + void* WKGeolocationManagerProviderDidFailToDeterminePosition(void) { 2718 + if (verbose) puts("STUB: WKGeolocationManagerProviderDidFailToDeterminePosition called"); 2719 + return NULL; 2720 + } 2721 + 2722 + void* WKGeolocationManagerProviderDidFailToDeterminePositionWithErrorMessage(void) { 2723 + if (verbose) puts("STUB: WKGeolocationManagerProviderDidFailToDeterminePositionWithErrorMessage called"); 2724 + return NULL; 2725 + } 2726 + 2727 + void* WKGeolocationManagerSetProvider(void) { 2728 + if (verbose) puts("STUB: WKGeolocationManagerSetProvider called"); 2729 + return NULL; 2730 + } 2731 + 2732 + void* WKGeolocationPermissionRequestAllow(void) { 2733 + if (verbose) puts("STUB: WKGeolocationPermissionRequestAllow called"); 2734 + return NULL; 2735 + } 2736 + 2737 + void* WKGeolocationPermissionRequestDeny(void) { 2738 + if (verbose) puts("STUB: WKGeolocationPermissionRequestDeny called"); 2739 + return NULL; 2740 + } 2741 + 2742 + void* WKGeolocationPermissionRequestGetTypeID(void) { 2743 + if (verbose) puts("STUB: WKGeolocationPermissionRequestGetTypeID called"); 2744 + return NULL; 2745 + } 2746 + 2747 + void* WKGeolocationPositionCreate(void) { 2748 + if (verbose) puts("STUB: WKGeolocationPositionCreate called"); 2749 + return NULL; 2750 + } 2751 + 2752 + void* WKGeolocationPositionCreate_b(void) { 2753 + if (verbose) puts("STUB: WKGeolocationPositionCreate_b called"); 2754 + return NULL; 2755 + } 2756 + 2757 + void* WKGeolocationPositionCreate_c(void) { 2758 + if (verbose) puts("STUB: WKGeolocationPositionCreate_c called"); 2759 + return NULL; 2760 + } 2761 + 2762 + void* WKGeolocationPositionGetTypeID(void) { 2763 + if (verbose) puts("STUB: WKGeolocationPositionGetTypeID called"); 2764 + return NULL; 2765 + } 2766 + 2767 + void* WKGetAPIURLSchemeTaskInstanceCount(void) { 2768 + if (verbose) puts("STUB: WKGetAPIURLSchemeTaskInstanceCount called"); 2769 + return NULL; 2770 + } 2771 + 2772 + void* WKGetTypeID(void) { 2773 + if (verbose) puts("STUB: WKGetTypeID called"); 2774 + return NULL; 2775 + } 2776 + 2777 + void* WKGetWebURLSchemeTaskInstanceCount(void) { 2778 + if (verbose) puts("STUB: WKGetWebURLSchemeTaskInstanceCount called"); 2779 + return NULL; 2780 + } 2781 + 2782 + void* WKHitTestResultCopyAbsoluteImageURL(void) { 2783 + if (verbose) puts("STUB: WKHitTestResultCopyAbsoluteImageURL called"); 2784 + return NULL; 2785 + } 2786 + 2787 + void* WKHitTestResultCopyAbsoluteLinkURL(void) { 2788 + if (verbose) puts("STUB: WKHitTestResultCopyAbsoluteLinkURL called"); 2789 + return NULL; 2790 + } 2791 + 2792 + void* WKHitTestResultCopyAbsoluteMediaURL(void) { 2793 + if (verbose) puts("STUB: WKHitTestResultCopyAbsoluteMediaURL called"); 2794 + return NULL; 2795 + } 2796 + 2797 + void* WKHitTestResultCopyAbsolutePDFURL(void) { 2798 + if (verbose) puts("STUB: WKHitTestResultCopyAbsolutePDFURL called"); 2799 + return NULL; 2800 + } 2801 + 2802 + void* WKHitTestResultCopyLinkLabel(void) { 2803 + if (verbose) puts("STUB: WKHitTestResultCopyLinkLabel called"); 2804 + return NULL; 2805 + } 2806 + 2807 + void* WKHitTestResultCopyLinkTitle(void) { 2808 + if (verbose) puts("STUB: WKHitTestResultCopyLinkTitle called"); 2809 + return NULL; 2810 + } 2811 + 2812 + void* WKHitTestResultCopyLookupText(void) { 2813 + if (verbose) puts("STUB: WKHitTestResultCopyLookupText called"); 2814 + return NULL; 2815 + } 2816 + 2817 + void* WKHitTestResultGetElementBoundingBox(void) { 2818 + if (verbose) puts("STUB: WKHitTestResultGetElementBoundingBox called"); 2819 + return NULL; 2820 + } 2821 + 2822 + void* WKHitTestResultGetTypeID(void) { 2823 + if (verbose) puts("STUB: WKHitTestResultGetTypeID called"); 2824 + return NULL; 2825 + } 2826 + 2827 + void* WKHitTestResultIsContentEditable(void) { 2828 + if (verbose) puts("STUB: WKHitTestResultIsContentEditable called"); 2829 + return NULL; 2830 + } 2831 + 2832 + void* WKIconDatabaseCheckIntegrityBeforeOpening(void) { 2833 + if (verbose) puts("STUB: WKIconDatabaseCheckIntegrityBeforeOpening called"); 2834 + return NULL; 2835 + } 2836 + 2837 + void* WKIconDatabaseClose(void) { 2838 + if (verbose) puts("STUB: WKIconDatabaseClose called"); 2839 + return NULL; 2840 + } 2841 + 2842 + void* WKIconDatabaseCopyIconDataForPageURL(void) { 2843 + if (verbose) puts("STUB: WKIconDatabaseCopyIconDataForPageURL called"); 2844 + return NULL; 2845 + } 2846 + 2847 + void* WKIconDatabaseCopyIconURLForPageURL(void) { 2848 + if (verbose) puts("STUB: WKIconDatabaseCopyIconURLForPageURL called"); 2849 + return NULL; 2850 + } 2851 + 2852 + void* WKIconDatabaseEnableDatabaseCleanup(void) { 2853 + if (verbose) puts("STUB: WKIconDatabaseEnableDatabaseCleanup called"); 2854 + return NULL; 2855 + } 2856 + 2857 + void* WKIconDatabaseGetTypeID(void) { 2858 + if (verbose) puts("STUB: WKIconDatabaseGetTypeID called"); 2859 + return NULL; 2860 + } 2861 + 2862 + void* WKIconDatabaseReleaseIconForURL(void) { 2863 + if (verbose) puts("STUB: WKIconDatabaseReleaseIconForURL called"); 2864 + return NULL; 2865 + } 2866 + 2867 + void* WKIconDatabaseRemoveAllIcons(void) { 2868 + if (verbose) puts("STUB: WKIconDatabaseRemoveAllIcons called"); 2869 + return NULL; 2870 + } 2871 + 2872 + void* WKIconDatabaseRetainIconForURL(void) { 2873 + if (verbose) puts("STUB: WKIconDatabaseRetainIconForURL called"); 2874 + return NULL; 2875 + } 2876 + 2877 + void* WKIconDatabaseSetIconDataForIconURL(void) { 2878 + if (verbose) puts("STUB: WKIconDatabaseSetIconDataForIconURL called"); 2879 + return NULL; 2880 + } 2881 + 2882 + void* WKIconDatabaseSetIconDatabaseClient(void) { 2883 + if (verbose) puts("STUB: WKIconDatabaseSetIconDatabaseClient called"); 2884 + return NULL; 2885 + } 2886 + 2887 + void* WKIconDatabaseSetIconURLForPageURL(void) { 2888 + if (verbose) puts("STUB: WKIconDatabaseSetIconURLForPageURL called"); 2889 + return NULL; 2890 + } 2891 + 2892 + void* WKIconDatabaseTryCopyCGImageArrayForURL(void) { 2893 + if (verbose) puts("STUB: WKIconDatabaseTryCopyCGImageArrayForURL called"); 2894 + return NULL; 2895 + } 2896 + 2897 + void* WKIconDatabaseTryGetCGImageForURL(void) { 2898 + if (verbose) puts("STUB: WKIconDatabaseTryGetCGImageForURL called"); 2899 + return NULL; 2900 + } 2901 + 2902 + void* WKImageCreate(void) { 2903 + if (verbose) puts("STUB: WKImageCreate called"); 2904 + return NULL; 2905 + } 2906 + 2907 + void* WKImageCreateCGImage(void) { 2908 + if (verbose) puts("STUB: WKImageCreateCGImage called"); 2909 + return NULL; 2910 + } 2911 + 2912 + void* WKImageCreateFromCGImage(void) { 2913 + if (verbose) puts("STUB: WKImageCreateFromCGImage called"); 2914 + return NULL; 2915 + } 2916 + 2917 + void* WKImageGetSize(void) { 2918 + if (verbose) puts("STUB: WKImageGetSize called"); 2919 + return NULL; 2920 + } 2921 + 2922 + void* WKImageGetTypeID(void) { 2923 + if (verbose) puts("STUB: WKImageGetTypeID called"); 2924 + return NULL; 2925 + } 2926 + 2927 + void* WKInspectorAttach(void) { 2928 + if (verbose) puts("STUB: WKInspectorAttach called"); 2929 + return NULL; 2930 + } 2931 + 2932 + void* WKInspectorClose(void) { 2933 + if (verbose) puts("STUB: WKInspectorClose called"); 2934 + return NULL; 2935 + } 2936 + 2937 + void* WKInspectorConnect(void) { 2938 + if (verbose) puts("STUB: WKInspectorConnect called"); 2939 + return NULL; 2940 + } 2941 + 2942 + void* WKInspectorDetach(void) { 2943 + if (verbose) puts("STUB: WKInspectorDetach called"); 2944 + return NULL; 2945 + } 2946 + 2947 + void* WKInspectorGetPage(void) { 2948 + if (verbose) puts("STUB: WKInspectorGetPage called"); 2949 + return NULL; 2950 + } 2951 + 2952 + void* WKInspectorGetTypeID(void) { 2953 + if (verbose) puts("STUB: WKInspectorGetTypeID called"); 2954 + return NULL; 2955 + } 2956 + 2957 + void* WKInspectorHide(void) { 2958 + if (verbose) puts("STUB: WKInspectorHide called"); 2959 + return NULL; 2960 + } 2961 + 2962 + void* WKInspectorIsAttached(void) { 2963 + if (verbose) puts("STUB: WKInspectorIsAttached called"); 2964 + return NULL; 2965 + } 2966 + 2967 + void* WKInspectorIsConnected(void) { 2968 + if (verbose) puts("STUB: WKInspectorIsConnected called"); 2969 + return NULL; 2970 + } 2971 + 2972 + void* WKInspectorIsElementSelectionActive(void) { 2973 + if (verbose) puts("STUB: WKInspectorIsElementSelectionActive called"); 2974 + return NULL; 2975 + } 2976 + 2977 + void* WKInspectorIsFront(void) { 2978 + if (verbose) puts("STUB: WKInspectorIsFront called"); 2979 + return NULL; 2980 + } 2981 + 2982 + void* WKInspectorIsProfilingPage(void) { 2983 + if (verbose) puts("STUB: WKInspectorIsProfilingPage called"); 2984 + return NULL; 2985 + } 2986 + 2987 + void* WKInspectorIsVisible(void) { 2988 + if (verbose) puts("STUB: WKInspectorIsVisible called"); 2989 + return NULL; 2990 + } 2991 + 2992 + void* WKInspectorShow(void) { 2993 + if (verbose) puts("STUB: WKInspectorShow called"); 2994 + return NULL; 2995 + } 2996 + 2997 + void* WKInspectorShowConsole(void) { 2998 + if (verbose) puts("STUB: WKInspectorShowConsole called"); 2999 + return NULL; 3000 + } 3001 + 3002 + void* WKInspectorShowMainResourceForFrame(void) { 3003 + if (verbose) puts("STUB: WKInspectorShowMainResourceForFrame called"); 3004 + return NULL; 3005 + } 3006 + 3007 + void* WKInspectorShowResources(void) { 3008 + if (verbose) puts("STUB: WKInspectorShowResources called"); 3009 + return NULL; 3010 + } 3011 + 3012 + void* WKInspectorToggleElementSelection(void) { 3013 + if (verbose) puts("STUB: WKInspectorToggleElementSelection called"); 3014 + return NULL; 3015 + } 3016 + 3017 + void* WKInspectorTogglePageProfiling(void) { 3018 + if (verbose) puts("STUB: WKInspectorTogglePageProfiling called"); 3019 + return NULL; 3020 + } 3021 + 3022 + void* WKKeyValueStorageManagerDeleteAllEntries(void) { 3023 + if (verbose) puts("STUB: WKKeyValueStorageManagerDeleteAllEntries called"); 3024 + return NULL; 3025 + } 3026 + 3027 + void* WKKeyValueStorageManagerDeleteEntriesForOrigin(void) { 3028 + if (verbose) puts("STUB: WKKeyValueStorageManagerDeleteEntriesForOrigin called"); 3029 + return NULL; 3030 + } 3031 + 3032 + void* WKKeyValueStorageManagerGetCreationTimeKey(void) { 3033 + if (verbose) puts("STUB: WKKeyValueStorageManagerGetCreationTimeKey called"); 3034 + return NULL; 3035 + } 3036 + 3037 + void* WKKeyValueStorageManagerGetKeyValueStorageOrigins(void) { 3038 + if (verbose) puts("STUB: WKKeyValueStorageManagerGetKeyValueStorageOrigins called"); 3039 + return NULL; 3040 + } 3041 + 3042 + void* WKKeyValueStorageManagerGetModificationTimeKey(void) { 3043 + if (verbose) puts("STUB: WKKeyValueStorageManagerGetModificationTimeKey called"); 3044 + return NULL; 3045 + } 3046 + 3047 + void* WKKeyValueStorageManagerGetOriginKey(void) { 3048 + if (verbose) puts("STUB: WKKeyValueStorageManagerGetOriginKey called"); 3049 + return NULL; 3050 + } 3051 + 3052 + void* WKKeyValueStorageManagerGetStorageDetailsByOrigin(void) { 3053 + if (verbose) puts("STUB: WKKeyValueStorageManagerGetStorageDetailsByOrigin called"); 3054 + return NULL; 3055 + } 3056 + 3057 + void* WKKeyValueStorageManagerGetTypeID(void) { 3058 + if (verbose) puts("STUB: WKKeyValueStorageManagerGetTypeID called"); 3059 + return NULL; 3060 + } 3061 + 3062 + void* WKMediaSessionFocusManagerGetTypeID(void) { 3063 + if (verbose) puts("STUB: WKMediaSessionFocusManagerGetTypeID called"); 3064 + return NULL; 3065 + } 3066 + 3067 + void* WKMediaSessionFocusManagerSetClient(void) { 3068 + if (verbose) puts("STUB: WKMediaSessionFocusManagerSetClient called"); 3069 + return NULL; 3070 + } 3071 + 3072 + void* WKMediaSessionFocusManagerSetVolumeOfFocusedMediaElement(void) { 3073 + if (verbose) puts("STUB: WKMediaSessionFocusManagerSetVolumeOfFocusedMediaElement called"); 3074 + return NULL; 3075 + } 3076 + 3077 + void* WKMediaSessionFocusManagerValueForPlaybackAttribute(void) { 3078 + if (verbose) puts("STUB: WKMediaSessionFocusManagerValueForPlaybackAttribute called"); 3079 + return NULL; 3080 + } 3081 + 3082 + void* WKMediaSessionMetadataCopyAlbum(void) { 3083 + if (verbose) puts("STUB: WKMediaSessionMetadataCopyAlbum called"); 3084 + return NULL; 3085 + } 3086 + 3087 + void* WKMediaSessionMetadataCopyArtist(void) { 3088 + if (verbose) puts("STUB: WKMediaSessionMetadataCopyArtist called"); 3089 + return NULL; 3090 + } 3091 + 3092 + void* WKMediaSessionMetadataCopyArtworkURL(void) { 3093 + if (verbose) puts("STUB: WKMediaSessionMetadataCopyArtworkURL called"); 3094 + return NULL; 3095 + } 3096 + 3097 + void* WKMediaSessionMetadataCopyTitle(void) { 3098 + if (verbose) puts("STUB: WKMediaSessionMetadataCopyTitle called"); 3099 + return NULL; 3100 + } 3101 + 3102 + void* WKMediaSessionMetadataGetTypeID(void) { 3103 + if (verbose) puts("STUB: WKMediaSessionMetadataGetTypeID called"); 3104 + return NULL; 3105 + } 3106 + 3107 + void* WKMutableArrayCreate(void) { 3108 + if (verbose) puts("STUB: WKMutableArrayCreate called"); 3109 + return NULL; 3110 + } 3111 + 3112 + void* WKMutableDictionaryCreate(void) { 3113 + if (verbose) puts("STUB: WKMutableDictionaryCreate called"); 3114 + return NULL; 3115 + } 3116 + 3117 + void* WKNavigationActionGetTypeID(void) { 3118 + if (verbose) puts("STUB: WKNavigationActionGetTypeID called"); 3119 + return NULL; 3120 + } 3121 + 3122 + void* WKNavigationDataCopyNavigationDestinationURL(void) { 3123 + if (verbose) puts("STUB: WKNavigationDataCopyNavigationDestinationURL called"); 3124 + return NULL; 3125 + } 3126 + 3127 + void* WKNavigationDataCopyOriginalRequest(void) { 3128 + if (verbose) puts("STUB: WKNavigationDataCopyOriginalRequest called"); 3129 + return NULL; 3130 + } 3131 + 3132 + void* WKNavigationDataCopyTitle(void) { 3133 + if (verbose) puts("STUB: WKNavigationDataCopyTitle called"); 3134 + return NULL; 3135 + } 3136 + 3137 + void* WKNavigationDataCopyURL(void) { 3138 + if (verbose) puts("STUB: WKNavigationDataCopyURL called"); 3139 + return NULL; 3140 + } 3141 + 3142 + void* WKNavigationDataGetTypeID(void) { 3143 + if (verbose) puts("STUB: WKNavigationDataGetTypeID called"); 3144 + return NULL; 3145 + } 3146 + 3147 + void* WKNavigationGetTypeID(void) { 3148 + if (verbose) puts("STUB: WKNavigationGetTypeID called"); 3149 + return NULL; 3150 + } 3151 + 3152 + void* WKNavigationResponseCanShowMIMEType(void) { 3153 + if (verbose) puts("STUB: WKNavigationResponseCanShowMIMEType called"); 3154 + return NULL; 3155 + } 3156 + 3157 + void* WKNavigationResponseGetTypeID(void) { 3158 + if (verbose) puts("STUB: WKNavigationResponseGetTypeID called"); 3159 + return NULL; 3160 + } 3161 + 3162 + void* WKNotificationCopyBody(void) { 3163 + if (verbose) puts("STUB: WKNotificationCopyBody called"); 3164 + return NULL; 3165 + } 3166 + 3167 + void* WKNotificationCopyDir(void) { 3168 + if (verbose) puts("STUB: WKNotificationCopyDir called"); 3169 + return NULL; 3170 + } 3171 + 3172 + void* WKNotificationCopyIconURL(void) { 3173 + if (verbose) puts("STUB: WKNotificationCopyIconURL called"); 3174 + return NULL; 3175 + } 3176 + 3177 + void* WKNotificationCopyLang(void) { 3178 + if (verbose) puts("STUB: WKNotificationCopyLang called"); 3179 + return NULL; 3180 + } 3181 + 3182 + void* WKNotificationCopyTag(void) { 3183 + if (verbose) puts("STUB: WKNotificationCopyTag called"); 3184 + return NULL; 3185 + } 3186 + 3187 + void* WKNotificationCopyTitle(void) { 3188 + if (verbose) puts("STUB: WKNotificationCopyTitle called"); 3189 + return NULL; 3190 + } 3191 + 3192 + void* WKNotificationGetID(void) { 3193 + if (verbose) puts("STUB: WKNotificationGetID called"); 3194 + return NULL; 3195 + } 3196 + 3197 + void* WKNotificationGetSecurityOrigin(void) { 3198 + if (verbose) puts("STUB: WKNotificationGetSecurityOrigin called"); 3199 + return NULL; 3200 + } 3201 + 3202 + void* WKNotificationGetTypeID(void) { 3203 + if (verbose) puts("STUB: WKNotificationGetTypeID called"); 3204 + return NULL; 3205 + } 3206 + 3207 + void* WKNotificationManagerGetLocalIDForTesting(void) { 3208 + if (verbose) puts("STUB: WKNotificationManagerGetLocalIDForTesting called"); 3209 + return NULL; 3210 + } 3211 + 3212 + void* WKNotificationManagerGetTypeID(void) { 3213 + if (verbose) puts("STUB: WKNotificationManagerGetTypeID called"); 3214 + return NULL; 3215 + } 3216 + 3217 + void* WKNotificationManagerProviderDidClickNotification(void) { 3218 + if (verbose) puts("STUB: WKNotificationManagerProviderDidClickNotification called"); 3219 + return NULL; 3220 + } 3221 + 3222 + void* WKNotificationManagerProviderDidCloseNotifications(void) { 3223 + if (verbose) puts("STUB: WKNotificationManagerProviderDidCloseNotifications called"); 3224 + return NULL; 3225 + } 3226 + 3227 + void* WKNotificationManagerProviderDidRemoveNotificationPolicies(void) { 3228 + if (verbose) puts("STUB: WKNotificationManagerProviderDidRemoveNotificationPolicies called"); 3229 + return NULL; 3230 + } 3231 + 3232 + void* WKNotificationManagerProviderDidShowNotification(void) { 3233 + if (verbose) puts("STUB: WKNotificationManagerProviderDidShowNotification called"); 3234 + return NULL; 3235 + } 3236 + 3237 + void* WKNotificationManagerProviderDidUpdateNotificationPolicy(void) { 3238 + if (verbose) puts("STUB: WKNotificationManagerProviderDidUpdateNotificationPolicy called"); 3239 + return NULL; 3240 + } 3241 + 3242 + void* WKNotificationManagerSetProvider(void) { 3243 + if (verbose) puts("STUB: WKNotificationManagerSetProvider called"); 3244 + return NULL; 3245 + } 3246 + 3247 + void* WKNotificationPermissionRequestAllow(void) { 3248 + if (verbose) puts("STUB: WKNotificationPermissionRequestAllow called"); 3249 + return NULL; 3250 + } 3251 + 3252 + void* WKNotificationPermissionRequestDeny(void) { 3253 + if (verbose) puts("STUB: WKNotificationPermissionRequestDeny called"); 3254 + return NULL; 3255 + } 3256 + 3257 + void* WKNotificationPermissionRequestGetTypeID(void) { 3258 + if (verbose) puts("STUB: WKNotificationPermissionRequestGetTypeID called"); 3259 + return NULL; 3260 + } 3261 + 3262 + void* WKObjCTypeWrapperCreate(void) { 3263 + if (verbose) puts("STUB: WKObjCTypeWrapperCreate called"); 3264 + return NULL; 3265 + } 3266 + 3267 + void* WKObjCTypeWrapperGetObject(void) { 3268 + if (verbose) puts("STUB: WKObjCTypeWrapperGetObject called"); 3269 + return NULL; 3270 + } 3271 + 3272 + void* WKObjCTypeWrapperGetTypeID(void) { 3273 + if (verbose) puts("STUB: WKObjCTypeWrapperGetTypeID called"); 3274 + return NULL; 3275 + } 3276 + 3277 + void* WKOpenPanelParametersCopyAcceptedFileExtensions(void) { 3278 + if (verbose) puts("STUB: WKOpenPanelParametersCopyAcceptedFileExtensions called"); 3279 + return NULL; 3280 + } 3281 + 3282 + void* WKOpenPanelParametersCopyAcceptedMIMETypes(void) { 3283 + if (verbose) puts("STUB: WKOpenPanelParametersCopyAcceptedMIMETypes called"); 3284 + return NULL; 3285 + } 3286 + 3287 + void* WKOpenPanelParametersCopyCapture(void) { 3288 + if (verbose) puts("STUB: WKOpenPanelParametersCopyCapture called"); 3289 + return NULL; 3290 + } 3291 + 3292 + void* WKOpenPanelParametersCopySelectedFileNames(void) { 3293 + if (verbose) puts("STUB: WKOpenPanelParametersCopySelectedFileNames called"); 3294 + return NULL; 3295 + } 3296 + 3297 + void* WKOpenPanelParametersGetAllowsDirectories(void) { 3298 + if (verbose) puts("STUB: WKOpenPanelParametersGetAllowsDirectories called"); 3299 + return NULL; 3300 + } 3301 + 3302 + void* WKOpenPanelParametersGetAllowsMultipleFiles(void) { 3303 + if (verbose) puts("STUB: WKOpenPanelParametersGetAllowsMultipleFiles called"); 3304 + return NULL; 3305 + } 3306 + 3307 + void* WKOpenPanelParametersGetMediaCaptureType(void) { 3308 + if (verbose) puts("STUB: WKOpenPanelParametersGetMediaCaptureType called"); 3309 + return NULL; 3310 + } 3311 + 3312 + void* WKOpenPanelParametersGetTypeID(void) { 3313 + if (verbose) puts("STUB: WKOpenPanelParametersGetTypeID called"); 3314 + return NULL; 3315 + } 3316 + 3317 + void* WKOpenPanelResultListenerCancel(void) { 3318 + if (verbose) puts("STUB: WKOpenPanelResultListenerCancel called"); 3319 + return NULL; 3320 + } 3321 + 3322 + void* WKOpenPanelResultListenerChooseFiles(void) { 3323 + if (verbose) puts("STUB: WKOpenPanelResultListenerChooseFiles called"); 3324 + return NULL; 3325 + } 3326 + 3327 + void* WKOpenPanelResultListenerGetTypeID(void) { 3328 + if (verbose) puts("STUB: WKOpenPanelResultListenerGetTypeID called"); 3329 + return NULL; 3330 + } 3331 + 3332 + void* WKPageAreScrollbarAnimationsSuppressed(void) { 3333 + if (verbose) puts("STUB: WKPageAreScrollbarAnimationsSuppressed called"); 3334 + return NULL; 3335 + } 3336 + 3337 + void* WKPageBackgroundExtendsBeyondPage(void) { 3338 + if (verbose) puts("STUB: WKPageBackgroundExtendsBeyondPage called"); 3339 + return NULL; 3340 + } 3341 + 3342 + void* WKPageBeginPrinting(void) { 3343 + if (verbose) puts("STUB: WKPageBeginPrinting called"); 3344 + return NULL; 3345 + } 3346 + 3347 + void* WKPageCallAfterNextPresentationUpdate(void) { 3348 + if (verbose) puts("STUB: WKPageCallAfterNextPresentationUpdate called"); 3349 + return NULL; 3350 + } 3351 + 3352 + void* WKPageCanDelete(void) { 3353 + if (verbose) puts("STUB: WKPageCanDelete called"); 3354 + return NULL; 3355 + } 3356 + 3357 + void* WKPageCanGoBack(void) { 3358 + if (verbose) puts("STUB: WKPageCanGoBack called"); 3359 + return NULL; 3360 + } 3361 + 3362 + void* WKPageCanGoForward(void) { 3363 + if (verbose) puts("STUB: WKPageCanGoForward called"); 3364 + return NULL; 3365 + } 3366 + 3367 + void* WKPageCenterSelectionInVisibleArea(void) { 3368 + if (verbose) puts("STUB: WKPageCenterSelectionInVisibleArea called"); 3369 + return NULL; 3370 + } 3371 + 3372 + void* WKPageClearUserMediaState(void) { 3373 + if (verbose) puts("STUB: WKPageClearUserMediaState called"); 3374 + return NULL; 3375 + } 3376 + 3377 + void* WKPageClearWheelEventTestTrigger(void) { 3378 + if (verbose) puts("STUB: WKPageClearWheelEventTestTrigger called"); 3379 + return NULL; 3380 + } 3381 + 3382 + void* WKPageClose(void) { 3383 + if (verbose) puts("STUB: WKPageClose called"); 3384 + return NULL; 3385 + } 3386 + 3387 + void* WKPageComputePagesForPrinting(void) { 3388 + if (verbose) puts("STUB: WKPageComputePagesForPrinting called"); 3389 + return NULL; 3390 + } 3391 + 3392 + void* WKPageConfigurationCreate(void) { 3393 + if (verbose) puts("STUB: WKPageConfigurationCreate called"); 3394 + return NULL; 3395 + } 3396 + 3397 + void* WKPageConfigurationGetContext(void) { 3398 + if (verbose) puts("STUB: WKPageConfigurationGetContext called"); 3399 + return NULL; 3400 + } 3401 + 3402 + void* WKPageConfigurationGetPageGroup(void) { 3403 + if (verbose) puts("STUB: WKPageConfigurationGetPageGroup called"); 3404 + return NULL; 3405 + } 3406 + 3407 + void* WKPageConfigurationGetPreferences(void) { 3408 + if (verbose) puts("STUB: WKPageConfigurationGetPreferences called"); 3409 + return NULL; 3410 + } 3411 + 3412 + void* WKPageConfigurationGetRelatedPage(void) { 3413 + if (verbose) puts("STUB: WKPageConfigurationGetRelatedPage called"); 3414 + return NULL; 3415 + } 3416 + 3417 + void* WKPageConfigurationGetTypeID(void) { 3418 + if (verbose) puts("STUB: WKPageConfigurationGetTypeID called"); 3419 + return NULL; 3420 + } 3421 + 3422 + void* WKPageConfigurationGetUserContentController(void) { 3423 + if (verbose) puts("STUB: WKPageConfigurationGetUserContentController called"); 3424 + return NULL; 3425 + } 3426 + 3427 + void* WKPageConfigurationGetWebsiteDataStore(void) { 3428 + if (verbose) puts("STUB: WKPageConfigurationGetWebsiteDataStore called"); 3429 + return NULL; 3430 + } 3431 + 3432 + void* WKPageConfigurationSetBackgroundCPULimit(void) { 3433 + if (verbose) puts("STUB: WKPageConfigurationSetBackgroundCPULimit called"); 3434 + return NULL; 3435 + } 3436 + 3437 + void* WKPageConfigurationSetContext(void) { 3438 + if (verbose) puts("STUB: WKPageConfigurationSetContext called"); 3439 + return NULL; 3440 + } 3441 + 3442 + void* WKPageConfigurationSetInitialCapitalizationEnabled(void) { 3443 + if (verbose) puts("STUB: WKPageConfigurationSetInitialCapitalizationEnabled called"); 3444 + return NULL; 3445 + } 3446 + 3447 + void* WKPageConfigurationSetPageGroup(void) { 3448 + if (verbose) puts("STUB: WKPageConfigurationSetPageGroup called"); 3449 + return NULL; 3450 + } 3451 + 3452 + void* WKPageConfigurationSetPreferences(void) { 3453 + if (verbose) puts("STUB: WKPageConfigurationSetPreferences called"); 3454 + return NULL; 3455 + } 3456 + 3457 + void* WKPageConfigurationSetRelatedPage(void) { 3458 + if (verbose) puts("STUB: WKPageConfigurationSetRelatedPage called"); 3459 + return NULL; 3460 + } 3461 + 3462 + void* WKPageConfigurationSetUserContentController(void) { 3463 + if (verbose) puts("STUB: WKPageConfigurationSetUserContentController called"); 3464 + return NULL; 3465 + } 3466 + 3467 + void* WKPageConfigurationSetWebsiteDataStore(void) { 3468 + if (verbose) puts("STUB: WKPageConfigurationSetWebsiteDataStore called"); 3469 + return NULL; 3470 + } 3471 + 3472 + void* WKPageCopyActiveURL(void) { 3473 + if (verbose) puts("STUB: WKPageCopyActiveURL called"); 3474 + return NULL; 3475 + } 3476 + 3477 + void* WKPageCopyApplicationNameForUserAgent(void) { 3478 + if (verbose) puts("STUB: WKPageCopyApplicationNameForUserAgent called"); 3479 + return NULL; 3480 + } 3481 + 3482 + void* WKPageCopyCommittedURL(void) { 3483 + if (verbose) puts("STUB: WKPageCopyCommittedURL called"); 3484 + return NULL; 3485 + } 3486 + 3487 + void* WKPageCopyCustomTextEncodingName(void) { 3488 + if (verbose) puts("STUB: WKPageCopyCustomTextEncodingName called"); 3489 + return NULL; 3490 + } 3491 + 3492 + void* WKPageCopyCustomUserAgent(void) { 3493 + if (verbose) puts("STUB: WKPageCopyCustomUserAgent called"); 3494 + return NULL; 3495 + } 3496 + 3497 + void* WKPageCopyPageConfiguration(void) { 3498 + if (verbose) puts("STUB: WKPageCopyPageConfiguration called"); 3499 + return NULL; 3500 + } 3501 + 3502 + void* WKPageCopyPendingAPIRequestURL(void) { 3503 + if (verbose) puts("STUB: WKPageCopyPendingAPIRequestURL called"); 3504 + return NULL; 3505 + } 3506 + 3507 + void* WKPageCopyProvisionalURL(void) { 3508 + if (verbose) puts("STUB: WKPageCopyProvisionalURL called"); 3509 + return NULL; 3510 + } 3511 + 3512 + void* WKPageCopyRelatedPages(void) { 3513 + if (verbose) puts("STUB: WKPageCopyRelatedPages called"); 3514 + return NULL; 3515 + } 3516 + 3517 + void* WKPageCopySessionState(void) { 3518 + if (verbose) puts("STUB: WKPageCopySessionState called"); 3519 + return NULL; 3520 + } 3521 + 3522 + void* WKPageCopyStandardUserAgentWithApplicationName(void) { 3523 + if (verbose) puts("STUB: WKPageCopyStandardUserAgentWithApplicationName called"); 3524 + return NULL; 3525 + } 3526 + 3527 + void* WKPageCopyTitle(void) { 3528 + if (verbose) puts("STUB: WKPageCopyTitle called"); 3529 + return NULL; 3530 + } 3531 + 3532 + void* WKPageCopyUserAgent(void) { 3533 + if (verbose) puts("STUB: WKPageCopyUserAgent called"); 3534 + return NULL; 3535 + } 3536 + 3537 + void* WKPageCountStringMatches(void) { 3538 + if (verbose) puts("STUB: WKPageCountStringMatches called"); 3539 + return NULL; 3540 + } 3541 + 3542 + void* WKPageCreateObservableState(void) { 3543 + if (verbose) puts("STUB: WKPageCreateObservableState called"); 3544 + return NULL; 3545 + } 3546 + 3547 + void* WKPageDidAllowPointerLock(void) { 3548 + if (verbose) puts("STUB: WKPageDidAllowPointerLock called"); 3549 + return NULL; 3550 + } 3551 + 3552 + void* WKPageDidDenyPointerLock(void) { 3553 + if (verbose) puts("STUB: WKPageDidDenyPointerLock called"); 3554 + return NULL; 3555 + } 3556 + 3557 + void* WKPageDrawPagesToPDF(void) { 3558 + if (verbose) puts("STUB: WKPageDrawPagesToPDF called"); 3559 + return NULL; 3560 + } 3561 + 3562 + void* WKPageEndPrinting(void) { 3563 + if (verbose) puts("STUB: WKPageEndPrinting called"); 3564 + return NULL; 3565 + } 3566 + 3567 + void* WKPageExecuteCommand(void) { 3568 + if (verbose) puts("STUB: WKPageExecuteCommand called"); 3569 + return NULL; 3570 + } 3571 + 3572 + void* WKPageFindString(void) { 3573 + if (verbose) puts("STUB: WKPageFindString called"); 3574 + return NULL; 3575 + } 3576 + 3577 + void* WKPageFindStringMatches(void) { 3578 + if (verbose) puts("STUB: WKPageFindStringMatches called"); 3579 + return NULL; 3580 + } 3581 + 3582 + void* WKPageFixedLayoutSize(void) { 3583 + if (verbose) puts("STUB: WKPageFixedLayoutSize called"); 3584 + return NULL; 3585 + } 3586 + 3587 + void* WKPageForceRepaint(void) { 3588 + if (verbose) puts("STUB: WKPageForceRepaint called"); 3589 + return NULL; 3590 + } 3591 + 3592 + void* WKPageGetAddsVisitedLinks(void) { 3593 + if (verbose) puts("STUB: WKPageGetAddsVisitedLinks called"); 3594 + return NULL; 3595 + } 3596 + 3597 + void* WKPageGetAllowsRemoteInspection(void) { 3598 + if (verbose) puts("STUB: WKPageGetAllowsRemoteInspection called"); 3599 + return NULL; 3600 + } 3601 + 3602 + void* WKPageGetApplicationManifest_b(void) { 3603 + if (verbose) puts("STUB: WKPageGetApplicationManifest_b called"); 3604 + return NULL; 3605 + } 3606 + 3607 + void* WKPageGetBackForwardList(void) { 3608 + if (verbose) puts("STUB: WKPageGetBackForwardList called"); 3609 + return NULL; 3610 + } 3611 + 3612 + void* WKPageGetBackingScaleFactor(void) { 3613 + if (verbose) puts("STUB: WKPageGetBackingScaleFactor called"); 3614 + return NULL; 3615 + } 3616 + 3617 + void* WKPageGetBytecodeProfile(void) { 3618 + if (verbose) puts("STUB: WKPageGetBytecodeProfile called"); 3619 + return NULL; 3620 + } 3621 + 3622 + void* WKPageGetContentsAsMHTMLData(void) { 3623 + if (verbose) puts("STUB: WKPageGetContentsAsMHTMLData called"); 3624 + return NULL; 3625 + } 3626 + 3627 + void* WKPageGetContentsAsString(void) { 3628 + if (verbose) puts("STUB: WKPageGetContentsAsString called"); 3629 + return NULL; 3630 + } 3631 + 3632 + void* WKPageGetContext(void) { 3633 + if (verbose) puts("STUB: WKPageGetContext called"); 3634 + return NULL; 3635 + } 3636 + 3637 + void* WKPageGetEstimatedProgress(void) { 3638 + if (verbose) puts("STUB: WKPageGetEstimatedProgress called"); 3639 + return NULL; 3640 + } 3641 + 3642 + void* WKPageGetFocusedFrame(void) { 3643 + if (verbose) puts("STUB: WKPageGetFocusedFrame called"); 3644 + return NULL; 3645 + } 3646 + 3647 + void* WKPageGetFrameSetLargestFrame(void) { 3648 + if (verbose) puts("STUB: WKPageGetFrameSetLargestFrame called"); 3649 + return NULL; 3650 + } 3651 + 3652 + void* WKPageGetFullscreenDelegate(void) { 3653 + if (verbose) puts("STUB: WKPageGetFullscreenDelegate called"); 3654 + return NULL; 3655 + } 3656 + 3657 + void* WKPageGetGapBetweenPages(void) { 3658 + if (verbose) puts("STUB: WKPageGetGapBetweenPages called"); 3659 + return NULL; 3660 + } 3661 + 3662 + void* WKPageGetImageForFindMatch(void) { 3663 + if (verbose) puts("STUB: WKPageGetImageForFindMatch called"); 3664 + return NULL; 3665 + } 3666 + 3667 + void* WKPageGetInspector(void) { 3668 + if (verbose) puts("STUB: WKPageGetInspector called"); 3669 + return NULL; 3670 + } 3671 + 3672 + void* WKPageGetIsControlledByAutomation(void) { 3673 + if (verbose) puts("STUB: WKPageGetIsControlledByAutomation called"); 3674 + return NULL; 3675 + } 3676 + 3677 + void* WKPageGetMainFrame(void) { 3678 + if (verbose) puts("STUB: WKPageGetMainFrame called"); 3679 + return NULL; 3680 + } 3681 + 3682 + void* WKPageGetMediaCaptureEnabled(void) { 3683 + if (verbose) puts("STUB: WKPageGetMediaCaptureEnabled called"); 3684 + return NULL; 3685 + } 3686 + 3687 + void* WKPageGetMediaState(void) { 3688 + if (verbose) puts("STUB: WKPageGetMediaState called"); 3689 + return NULL; 3690 + } 3691 + 3692 + void* WKPageGetObjectRegistry(void) { 3693 + if (verbose) puts("STUB: WKPageGetObjectRegistry called"); 3694 + return NULL; 3695 + } 3696 + 3697 + void* WKPageGetPageCount(void) { 3698 + if (verbose) puts("STUB: WKPageGetPageCount called"); 3699 + return NULL; 3700 + } 3701 + 3702 + void* WKPageGetPageGroup(void) { 3703 + if (verbose) puts("STUB: WKPageGetPageGroup called"); 3704 + return NULL; 3705 + } 3706 + 3707 + void* WKPageGetPageLength(void) { 3708 + if (verbose) puts("STUB: WKPageGetPageLength called"); 3709 + return NULL; 3710 + } 3711 + 3712 + void* WKPageGetPageZoomFactor(void) { 3713 + if (verbose) puts("STUB: WKPageGetPageZoomFactor called"); 3714 + return NULL; 3715 + } 3716 + 3717 + void* WKPageGetPaginationBehavesLikeColumns(void) { 3718 + if (verbose) puts("STUB: WKPageGetPaginationBehavesLikeColumns called"); 3719 + return NULL; 3720 + } 3721 + 3722 + void* WKPageGetPaginationLineGridEnabled(void) { 3723 + if (verbose) puts("STUB: WKPageGetPaginationLineGridEnabled called"); 3724 + return NULL; 3725 + } 3726 + 3727 + void* WKPageGetPaginationMode(void) { 3728 + if (verbose) puts("STUB: WKPageGetPaginationMode called"); 3729 + return NULL; 3730 + } 3731 + 3732 + void* WKPageGetProcessIdentifier(void) { 3733 + if (verbose) puts("STUB: WKPageGetProcessIdentifier called"); 3734 + return NULL; 3735 + } 3736 + 3737 + void* WKPageGetRenderTreeSize(void) { 3738 + if (verbose) puts("STUB: WKPageGetRenderTreeSize called"); 3739 + return NULL; 3740 + } 3741 + 3742 + void* WKPageGetResourceCachingDisabled(void) { 3743 + if (verbose) puts("STUB: WKPageGetResourceCachingDisabled called"); 3744 + return NULL; 3745 + } 3746 + 3747 + void* WKPageGetSamplingProfilerOutput(void) { 3748 + if (verbose) puts("STUB: WKPageGetSamplingProfilerOutput called"); 3749 + return NULL; 3750 + } 3751 + 3752 + void* WKPageGetScaleFactor(void) { 3753 + if (verbose) puts("STUB: WKPageGetScaleFactor called"); 3754 + return NULL; 3755 + } 3756 + 3757 + void* WKPageGetScrollPinningBehavior(void) { 3758 + if (verbose) puts("STUB: WKPageGetScrollPinningBehavior called"); 3759 + return NULL; 3760 + } 3761 + 3762 + void* WKPageGetSelectionAsWebArchiveData(void) { 3763 + if (verbose) puts("STUB: WKPageGetSelectionAsWebArchiveData called"); 3764 + return NULL; 3765 + } 3766 + 3767 + void* WKPageGetSessionBackForwardListItemValueType(void) { 3768 + if (verbose) puts("STUB: WKPageGetSessionBackForwardListItemValueType called"); 3769 + return NULL; 3770 + } 3771 + 3772 + void* WKPageGetSessionHistoryURLValueType(void) { 3773 + if (verbose) puts("STUB: WKPageGetSessionHistoryURLValueType called"); 3774 + return NULL; 3775 + } 3776 + 3777 + void* WKPageGetSourceForFrame(void) { 3778 + if (verbose) puts("STUB: WKPageGetSourceForFrame called"); 3779 + return NULL; 3780 + } 3781 + 3782 + void* WKPageGetTextZoomFactor(void) { 3783 + if (verbose) puts("STUB: WKPageGetTextZoomFactor called"); 3784 + return NULL; 3785 + } 3786 + 3787 + void* WKPageGetTypeID(void) { 3788 + if (verbose) puts("STUB: WKPageGetTypeID called"); 3789 + return NULL; 3790 + } 3791 + 3792 + void* WKPageGoBack(void) { 3793 + if (verbose) puts("STUB: WKPageGoBack called"); 3794 + return NULL; 3795 + } 3796 + 3797 + void* WKPageGoForward(void) { 3798 + if (verbose) puts("STUB: WKPageGoForward called"); 3799 + return NULL; 3800 + } 3801 + 3802 + void* WKPageGoToBackForwardListItem(void) { 3803 + if (verbose) puts("STUB: WKPageGoToBackForwardListItem called"); 3804 + return NULL; 3805 + } 3806 + 3807 + void* WKPageGroupAddUserScript(void) { 3808 + if (verbose) puts("STUB: WKPageGroupAddUserScript called"); 3809 + return NULL; 3810 + } 3811 + 3812 + void* WKPageGroupAddUserStyleSheet(void) { 3813 + if (verbose) puts("STUB: WKPageGroupAddUserStyleSheet called"); 3814 + return NULL; 3815 + } 3816 + 3817 + void* WKPageGroupCreateWithIdentifier(void) { 3818 + if (verbose) puts("STUB: WKPageGroupCreateWithIdentifier called"); 3819 + return NULL; 3820 + } 3821 + 3822 + void* WKPageGroupGetPreferences(void) { 3823 + if (verbose) puts("STUB: WKPageGroupGetPreferences called"); 3824 + return NULL; 3825 + } 3826 + 3827 + void* WKPageGroupGetTypeID(void) { 3828 + if (verbose) puts("STUB: WKPageGroupGetTypeID called"); 3829 + return NULL; 3830 + } 3831 + 3832 + void* WKPageGroupGetUserContentController(void) { 3833 + if (verbose) puts("STUB: WKPageGroupGetUserContentController called"); 3834 + return NULL; 3835 + } 3836 + 3837 + void* WKPageGroupRemoveAllUserScripts(void) { 3838 + if (verbose) puts("STUB: WKPageGroupRemoveAllUserScripts called"); 3839 + return NULL; 3840 + } 3841 + 3842 + void* WKPageGroupRemoveAllUserStyleSheets(void) { 3843 + if (verbose) puts("STUB: WKPageGroupRemoveAllUserStyleSheets called"); 3844 + return NULL; 3845 + } 3846 + 3847 + void* WKPageGroupSetPreferences(void) { 3848 + if (verbose) puts("STUB: WKPageGroupSetPreferences called"); 3849 + return NULL; 3850 + } 3851 + 3852 + void* WKPageHandleMediaEvent(void) { 3853 + if (verbose) puts("STUB: WKPageHandleMediaEvent called"); 3854 + return NULL; 3855 + } 3856 + 3857 + void* WKPageHasHorizontalScrollbar(void) { 3858 + if (verbose) puts("STUB: WKPageHasHorizontalScrollbar called"); 3859 + return NULL; 3860 + } 3861 + 3862 + void* WKPageHasMediaSessionWithActiveMediaElements(void) { 3863 + if (verbose) puts("STUB: WKPageHasMediaSessionWithActiveMediaElements called"); 3864 + return NULL; 3865 + } 3866 + 3867 + void* WKPageHasSelectedRange(void) { 3868 + if (verbose) puts("STUB: WKPageHasSelectedRange called"); 3869 + return NULL; 3870 + } 3871 + 3872 + void* WKPageHasVerticalScrollbar(void) { 3873 + if (verbose) puts("STUB: WKPageHasVerticalScrollbar called"); 3874 + return NULL; 3875 + } 3876 + 3877 + void* WKPageHideFindUI(void) { 3878 + if (verbose) puts("STUB: WKPageHideFindUI called"); 3879 + return NULL; 3880 + } 3881 + 3882 + void* WKPageHorizontalRubberBandingIsEnabled(void) { 3883 + if (verbose) puts("STUB: WKPageHorizontalRubberBandingIsEnabled called"); 3884 + return NULL; 3885 + } 3886 + 3887 + void* WKPageIsClosed(void) { 3888 + if (verbose) puts("STUB: WKPageIsClosed called"); 3889 + return NULL; 3890 + } 3891 + 3892 + void* WKPageIsContentEditable(void) { 3893 + if (verbose) puts("STUB: WKPageIsContentEditable called"); 3894 + return NULL; 3895 + } 3896 + 3897 + void* WKPageIsPinnedToBottomSide(void) { 3898 + if (verbose) puts("STUB: WKPageIsPinnedToBottomSide called"); 3899 + return NULL; 3900 + } 3901 + 3902 + void* WKPageIsPinnedToLeftSide(void) { 3903 + if (verbose) puts("STUB: WKPageIsPinnedToLeftSide called"); 3904 + return NULL; 3905 + } 3906 + 3907 + void* WKPageIsPinnedToRightSide(void) { 3908 + if (verbose) puts("STUB: WKPageIsPinnedToRightSide called"); 3909 + return NULL; 3910 + } 3911 + 3912 + void* WKPageIsPinnedToTopSide(void) { 3913 + if (verbose) puts("STUB: WKPageIsPinnedToTopSide called"); 3914 + return NULL; 3915 + } 3916 + 3917 + void* WKPageIsPlayingAudio(void) { 3918 + if (verbose) puts("STUB: WKPageIsPlayingAudio called"); 3919 + return NULL; 3920 + } 3921 + 3922 + void* WKPageIsPlayingVideoInEnhancedFullscreen(void) { 3923 + if (verbose) puts("STUB: WKPageIsPlayingVideoInEnhancedFullscreen called"); 3924 + return NULL; 3925 + } 3926 + 3927 + void* WKPageIsURLKnownHSTSHost(void) { 3928 + if (verbose) puts("STUB: WKPageIsURLKnownHSTSHost called"); 3929 + return NULL; 3930 + } 3931 + 3932 + void* WKPageIsWebProcessResponsive(void) { 3933 + if (verbose) puts("STUB: WKPageIsWebProcessResponsive called"); 3934 + return NULL; 3935 + } 3936 + 3937 + void* WKPageListenForLayoutMilestones(void) { 3938 + if (verbose) puts("STUB: WKPageListenForLayoutMilestones called"); 3939 + return NULL; 3940 + } 3941 + 3942 + void* WKPageLoadAlternateHTMLString(void) { 3943 + if (verbose) puts("STUB: WKPageLoadAlternateHTMLString called"); 3944 + return NULL; 3945 + } 3946 + 3947 + void* WKPageLoadAlternateHTMLStringWithUserData(void) { 3948 + if (verbose) puts("STUB: WKPageLoadAlternateHTMLStringWithUserData called"); 3949 + return NULL; 3950 + } 3951 + 3952 + void* WKPageLoadData(void) { 3953 + if (verbose) puts("STUB: WKPageLoadData called"); 3954 + return NULL; 3955 + } 3956 + 3957 + void* WKPageLoadDataWithUserData(void) { 3958 + if (verbose) puts("STUB: WKPageLoadDataWithUserData called"); 3959 + return NULL; 3960 + } 3961 + 3962 + void* WKPageLoadFile(void) { 3963 + if (verbose) puts("STUB: WKPageLoadFile called"); 3964 + return NULL; 3965 + } 3966 + 3967 + void* WKPageLoadFileWithUserData(void) { 3968 + if (verbose) puts("STUB: WKPageLoadFileWithUserData called"); 3969 + return NULL; 3970 + } 3971 + 3972 + void* WKPageLoadHTMLString(void) { 3973 + if (verbose) puts("STUB: WKPageLoadHTMLString called"); 3974 + return NULL; 3975 + } 3976 + 3977 + void* WKPageLoadHTMLStringWithUserData(void) { 3978 + if (verbose) puts("STUB: WKPageLoadHTMLStringWithUserData called"); 3979 + return NULL; 3980 + } 3981 + 3982 + void* WKPageLoadPlainTextString(void) { 3983 + if (verbose) puts("STUB: WKPageLoadPlainTextString called"); 3984 + return NULL; 3985 + } 3986 + 3987 + void* WKPageLoadPlainTextStringWithUserData(void) { 3988 + if (verbose) puts("STUB: WKPageLoadPlainTextStringWithUserData called"); 3989 + return NULL; 3990 + } 3991 + 3992 + void* WKPageLoadURL(void) { 3993 + if (verbose) puts("STUB: WKPageLoadURL called"); 3994 + return NULL; 3995 + } 3996 + 3997 + void* WKPageLoadURLRequest(void) { 3998 + if (verbose) puts("STUB: WKPageLoadURLRequest called"); 3999 + return NULL; 4000 + } 4001 + 4002 + void* WKPageLoadURLRequestWithUserData(void) { 4003 + if (verbose) puts("STUB: WKPageLoadURLRequestWithUserData called"); 4004 + return NULL; 4005 + } 4006 + 4007 + void* WKPageLoadURLWithShouldOpenExternalURLsPolicy(void) { 4008 + if (verbose) puts("STUB: WKPageLoadURLWithShouldOpenExternalURLsPolicy called"); 4009 + return NULL; 4010 + } 4011 + 4012 + void* WKPageLoadURLWithUserData(void) { 4013 + if (verbose) puts("STUB: WKPageLoadURLWithUserData called"); 4014 + return NULL; 4015 + } 4016 + 4017 + void* WKPageLoadWebArchiveData(void) { 4018 + if (verbose) puts("STUB: WKPageLoadWebArchiveData called"); 4019 + return NULL; 4020 + } 4021 + 4022 + void* WKPageLoadWebArchiveDataWithUserData(void) { 4023 + if (verbose) puts("STUB: WKPageLoadWebArchiveDataWithUserData called"); 4024 + return NULL; 4025 + } 4026 + 4027 + void* WKPageLookUpFrameFromHandle(void) { 4028 + if (verbose) puts("STUB: WKPageLookUpFrameFromHandle called"); 4029 + return NULL; 4030 + } 4031 + 4032 + void* WKPagePostMessageToInjectedBundle(void) { 4033 + if (verbose) puts("STUB: WKPagePostMessageToInjectedBundle called"); 4034 + return NULL; 4035 + } 4036 + 4037 + void* WKPageReload(void) { 4038 + if (verbose) puts("STUB: WKPageReload called"); 4039 + return NULL; 4040 + } 4041 + 4042 + void* WKPageReloadExpiredOnly(void) { 4043 + if (verbose) puts("STUB: WKPageReloadExpiredOnly called"); 4044 + return NULL; 4045 + } 4046 + 4047 + void* WKPageReloadFromOrigin(void) { 4048 + if (verbose) puts("STUB: WKPageReloadFromOrigin called"); 4049 + return NULL; 4050 + } 4051 + 4052 + void* WKPageReloadWithoutContentBlockers(void) { 4053 + if (verbose) puts("STUB: WKPageReloadWithoutContentBlockers called"); 4054 + return NULL; 4055 + } 4056 + 4057 + void* WKPageRenderTreeExternalRepresentation(void) { 4058 + if (verbose) puts("STUB: WKPageRenderTreeExternalRepresentation called"); 4059 + return NULL; 4060 + } 4061 + 4062 + void* WKPageRestoreFromSessionState(void) { 4063 + if (verbose) puts("STUB: WKPageRestoreFromSessionState called"); 4064 + return NULL; 4065 + } 4066 + 4067 + void* WKPageRestoreFromSessionStateWithoutNavigation(void) { 4068 + if (verbose) puts("STUB: WKPageRestoreFromSessionStateWithoutNavigation called"); 4069 + return NULL; 4070 + } 4071 + 4072 + void* WKPageRubberBandsAtBottom(void) { 4073 + if (verbose) puts("STUB: WKPageRubberBandsAtBottom called"); 4074 + return NULL; 4075 + } 4076 + 4077 + void* WKPageRubberBandsAtLeft(void) { 4078 + if (verbose) puts("STUB: WKPageRubberBandsAtLeft called"); 4079 + return NULL; 4080 + } 4081 + 4082 + void* WKPageRubberBandsAtRight(void) { 4083 + if (verbose) puts("STUB: WKPageRubberBandsAtRight called"); 4084 + return NULL; 4085 + } 4086 + 4087 + void* WKPageRubberBandsAtTop(void) { 4088 + if (verbose) puts("STUB: WKPageRubberBandsAtTop called"); 4089 + return NULL; 4090 + } 4091 + 4092 + void* WKPageRunBeforeUnloadConfirmPanelResultListenerCall(void) { 4093 + if (verbose) puts("STUB: WKPageRunBeforeUnloadConfirmPanelResultListenerCall called"); 4094 + return NULL; 4095 + } 4096 + 4097 + void* WKPageRunBeforeUnloadConfirmPanelResultListenerGetTypeID(void) { 4098 + if (verbose) puts("STUB: WKPageRunBeforeUnloadConfirmPanelResultListenerGetTypeID called"); 4099 + return NULL; 4100 + } 4101 + 4102 + void* WKPageRunJavaScriptAlertResultListenerCall(void) { 4103 + if (verbose) puts("STUB: WKPageRunJavaScriptAlertResultListenerCall called"); 4104 + return NULL; 4105 + } 4106 + 4107 + void* WKPageRunJavaScriptAlertResultListenerGetTypeID(void) { 4108 + if (verbose) puts("STUB: WKPageRunJavaScriptAlertResultListenerGetTypeID called"); 4109 + return NULL; 4110 + } 4111 + 4112 + void* WKPageRunJavaScriptConfirmResultListenerCall(void) { 4113 + if (verbose) puts("STUB: WKPageRunJavaScriptConfirmResultListenerCall called"); 4114 + return NULL; 4115 + } 4116 + 4117 + void* WKPageRunJavaScriptConfirmResultListenerGetTypeID(void) { 4118 + if (verbose) puts("STUB: WKPageRunJavaScriptConfirmResultListenerGetTypeID called"); 4119 + return NULL; 4120 + } 4121 + 4122 + void* WKPageRunJavaScriptInMainFrame(void) { 4123 + if (verbose) puts("STUB: WKPageRunJavaScriptInMainFrame called"); 4124 + return NULL; 4125 + } 4126 + 4127 + void* WKPageRunJavaScriptInMainFrame_b(void) { 4128 + if (verbose) puts("STUB: WKPageRunJavaScriptInMainFrame_b called"); 4129 + return NULL; 4130 + } 4131 + 4132 + void* WKPageRunJavaScriptPromptResultListenerCall(void) { 4133 + if (verbose) puts("STUB: WKPageRunJavaScriptPromptResultListenerCall called"); 4134 + return NULL; 4135 + } 4136 + 4137 + void* WKPageRunJavaScriptPromptResultListenerGetTypeID(void) { 4138 + if (verbose) puts("STUB: WKPageRunJavaScriptPromptResultListenerGetTypeID called"); 4139 + return NULL; 4140 + } 4141 + 4142 + void* WKPageSelectContextMenuItem(void) { 4143 + if (verbose) puts("STUB: WKPageSelectContextMenuItem called"); 4144 + return NULL; 4145 + } 4146 + 4147 + void* WKPageSelectFindMatch(void) { 4148 + if (verbose) puts("STUB: WKPageSelectFindMatch called"); 4149 + return NULL; 4150 + } 4151 + 4152 + void* WKPageSetAddsVisitedLinks(void) { 4153 + if (verbose) puts("STUB: WKPageSetAddsVisitedLinks called"); 4154 + return NULL; 4155 + } 4156 + 4157 + void* WKPageSetAllowsRemoteInspection(void) { 4158 + if (verbose) puts("STUB: WKPageSetAllowsRemoteInspection called"); 4159 + return NULL; 4160 + } 4161 + 4162 + void* WKPageSetApplicationNameForUserAgent(void) { 4163 + if (verbose) puts("STUB: WKPageSetApplicationNameForUserAgent called"); 4164 + return NULL; 4165 + } 4166 + 4167 + void* WKPageSetBackgroundExtendsBeyondPage(void) { 4168 + if (verbose) puts("STUB: WKPageSetBackgroundExtendsBeyondPage called"); 4169 + return NULL; 4170 + } 4171 + 4172 + void* WKPageSetControlledByAutomation(void) { 4173 + if (verbose) puts("STUB: WKPageSetControlledByAutomation called"); 4174 + return NULL; 4175 + } 4176 + 4177 + void* WKPageSetCustomBackingScaleFactor(void) { 4178 + if (verbose) puts("STUB: WKPageSetCustomBackingScaleFactor called"); 4179 + return NULL; 4180 + } 4181 + 4182 + void* WKPageSetCustomTextEncodingName(void) { 4183 + if (verbose) puts("STUB: WKPageSetCustomTextEncodingName called"); 4184 + return NULL; 4185 + } 4186 + 4187 + void* WKPageSetCustomUserAgent(void) { 4188 + if (verbose) puts("STUB: WKPageSetCustomUserAgent called"); 4189 + return NULL; 4190 + } 4191 + 4192 + void* WKPageSetEnableHorizontalRubberBanding(void) { 4193 + if (verbose) puts("STUB: WKPageSetEnableHorizontalRubberBanding called"); 4194 + return NULL; 4195 + } 4196 + 4197 + void* WKPageSetEnableVerticalRubberBanding(void) { 4198 + if (verbose) puts("STUB: WKPageSetEnableVerticalRubberBanding called"); 4199 + return NULL; 4200 + } 4201 + 4202 + void* WKPageSetFixedLayoutSize(void) { 4203 + if (verbose) puts("STUB: WKPageSetFixedLayoutSize called"); 4204 + return NULL; 4205 + } 4206 + 4207 + void* WKPageSetFullscreenDelegate(void) { 4208 + if (verbose) puts("STUB: WKPageSetFullscreenDelegate called"); 4209 + return NULL; 4210 + } 4211 + 4212 + void* WKPageSetGapBetweenPages(void) { 4213 + if (verbose) puts("STUB: WKPageSetGapBetweenPages called"); 4214 + return NULL; 4215 + } 4216 + 4217 + void* WKPageSetIgnoresViewportScaleLimits(void) { 4218 + if (verbose) puts("STUB: WKPageSetIgnoresViewportScaleLimits called"); 4219 + return NULL; 4220 + } 4221 + 4222 + void* WKPageSetMaintainsInactiveSelection(void) { 4223 + if (verbose) puts("STUB: WKPageSetMaintainsInactiveSelection called"); 4224 + return NULL; 4225 + } 4226 + 4227 + void* WKPageSetMayStartMediaWhenInWindow(void) { 4228 + if (verbose) puts("STUB: WKPageSetMayStartMediaWhenInWindow called"); 4229 + return NULL; 4230 + } 4231 + 4232 + void* WKPageSetMediaCaptureEnabled(void) { 4233 + if (verbose) puts("STUB: WKPageSetMediaCaptureEnabled called"); 4234 + return NULL; 4235 + } 4236 + 4237 + void* WKPageSetMediaVolume(void) { 4238 + if (verbose) puts("STUB: WKPageSetMediaVolume called"); 4239 + return NULL; 4240 + } 4241 + 4242 + void* WKPageSetMuted(void) { 4243 + if (verbose) puts("STUB: WKPageSetMuted called"); 4244 + return NULL; 4245 + } 4246 + 4247 + void* WKPageSetPageAndTextZoomFactors(void) { 4248 + if (verbose) puts("STUB: WKPageSetPageAndTextZoomFactors called"); 4249 + return NULL; 4250 + } 4251 + 4252 + void* WKPageSetPageContextMenuClient(void) { 4253 + if (verbose) puts("STUB: WKPageSetPageContextMenuClient called"); 4254 + return NULL; 4255 + } 4256 + 4257 + void* WKPageSetPageDiagnosticLoggingClient(void) { 4258 + if (verbose) puts("STUB: WKPageSetPageDiagnosticLoggingClient called"); 4259 + return NULL; 4260 + } 4261 + 4262 + void* WKPageSetPageFindClient(void) { 4263 + if (verbose) puts("STUB: WKPageSetPageFindClient called"); 4264 + return NULL; 4265 + } 4266 + 4267 + void* WKPageSetPageFindMatchesClient(void) { 4268 + if (verbose) puts("STUB: WKPageSetPageFindMatchesClient called"); 4269 + return NULL; 4270 + } 4271 + 4272 + void* WKPageSetPageFormClient(void) { 4273 + if (verbose) puts("STUB: WKPageSetPageFormClient called"); 4274 + return NULL; 4275 + } 4276 + 4277 + void* WKPageSetPageInjectedBundleClient(void) { 4278 + if (verbose) puts("STUB: WKPageSetPageInjectedBundleClient called"); 4279 + return NULL; 4280 + } 4281 + 4282 + void* WKPageSetPageLength(void) { 4283 + if (verbose) puts("STUB: WKPageSetPageLength called"); 4284 + return NULL; 4285 + } 4286 + 4287 + void* WKPageSetPageLoaderClient(void) { 4288 + if (verbose) puts("STUB: WKPageSetPageLoaderClient called"); 4289 + return NULL; 4290 + } 4291 + 4292 + void* WKPageSetPageNavigationClient(void) { 4293 + if (verbose) puts("STUB: WKPageSetPageNavigationClient called"); 4294 + return NULL; 4295 + } 4296 + 4297 + void* WKPageSetPagePolicyClient(void) { 4298 + if (verbose) puts("STUB: WKPageSetPagePolicyClient called"); 4299 + return NULL; 4300 + } 4301 + 4302 + void* WKPageSetPageUIClient(void) { 4303 + if (verbose) puts("STUB: WKPageSetPageUIClient called"); 4304 + return NULL; 4305 + } 4306 + 4307 + void* WKPageSetPageZoomFactor(void) { 4308 + if (verbose) puts("STUB: WKPageSetPageZoomFactor called"); 4309 + return NULL; 4310 + } 4311 + 4312 + void* WKPageSetPaginationBehavesLikeColumns(void) { 4313 + if (verbose) puts("STUB: WKPageSetPaginationBehavesLikeColumns called"); 4314 + return NULL; 4315 + } 4316 + 4317 + void* WKPageSetPaginationLineGridEnabled(void) { 4318 + if (verbose) puts("STUB: WKPageSetPaginationLineGridEnabled called"); 4319 + return NULL; 4320 + } 4321 + 4322 + void* WKPageSetPaginationMode(void) { 4323 + if (verbose) puts("STUB: WKPageSetPaginationMode called"); 4324 + return NULL; 4325 + } 4326 + 4327 + void* WKPageSetResourceCachingDisabled(void) { 4328 + if (verbose) puts("STUB: WKPageSetResourceCachingDisabled called"); 4329 + return NULL; 4330 + } 4331 + 4332 + void* WKPageSetRubberBandsAtBottom(void) { 4333 + if (verbose) puts("STUB: WKPageSetRubberBandsAtBottom called"); 4334 + return NULL; 4335 + } 4336 + 4337 + void* WKPageSetRubberBandsAtLeft(void) { 4338 + if (verbose) puts("STUB: WKPageSetRubberBandsAtLeft called"); 4339 + return NULL; 4340 + } 4341 + 4342 + void* WKPageSetRubberBandsAtRight(void) { 4343 + if (verbose) puts("STUB: WKPageSetRubberBandsAtRight called"); 4344 + return NULL; 4345 + } 4346 + 4347 + void* WKPageSetRubberBandsAtTop(void) { 4348 + if (verbose) puts("STUB: WKPageSetRubberBandsAtTop called"); 4349 + return NULL; 4350 + } 4351 + 4352 + void* WKPageSetScaleFactor(void) { 4353 + if (verbose) puts("STUB: WKPageSetScaleFactor called"); 4354 + return NULL; 4355 + } 4356 + 4357 + void* WKPageSetScrollPinningBehavior(void) { 4358 + if (verbose) puts("STUB: WKPageSetScrollPinningBehavior called"); 4359 + return NULL; 4360 + } 4361 + 4362 + void* WKPageSetSuppressScrollbarAnimations(void) { 4363 + if (verbose) puts("STUB: WKPageSetSuppressScrollbarAnimations called"); 4364 + return NULL; 4365 + } 4366 + 4367 + void* WKPageSetTextZoomFactor(void) { 4368 + if (verbose) puts("STUB: WKPageSetTextZoomFactor called"); 4369 + return NULL; 4370 + } 4371 + 4372 + void* WKPageSetUseFixedLayout(void) { 4373 + if (verbose) puts("STUB: WKPageSetUseFixedLayout called"); 4374 + return NULL; 4375 + } 4376 + 4377 + void* WKPageSetUserContentExtensionsEnabled(void) { 4378 + if (verbose) puts("STUB: WKPageSetUserContentExtensionsEnabled called"); 4379 + return NULL; 4380 + } 4381 + 4382 + void* WKPageStopLoading(void) { 4383 + if (verbose) puts("STUB: WKPageStopLoading called"); 4384 + return NULL; 4385 + } 4386 + 4387 + void* WKPageSupportsTextEncoding(void) { 4388 + if (verbose) puts("STUB: WKPageSupportsTextEncoding called"); 4389 + return NULL; 4390 + } 4391 + 4392 + void* WKPageSupportsTextZoom(void) { 4393 + if (verbose) puts("STUB: WKPageSupportsTextZoom called"); 4394 + return NULL; 4395 + } 4396 + 4397 + void* WKPageTerminate(void) { 4398 + if (verbose) puts("STUB: WKPageTerminate called"); 4399 + return NULL; 4400 + } 4401 + 4402 + void* WKPageTryClose(void) { 4403 + if (verbose) puts("STUB: WKPageTryClose called"); 4404 + return NULL; 4405 + } 4406 + 4407 + void* WKPageTryRestoreScrollPosition(void) { 4408 + if (verbose) puts("STUB: WKPageTryRestoreScrollPosition called"); 4409 + return NULL; 4410 + } 4411 + 4412 + void* WKPageUpdateWebsitePolicies(void) { 4413 + if (verbose) puts("STUB: WKPageUpdateWebsitePolicies called"); 4414 + return NULL; 4415 + } 4416 + 4417 + void* WKPageUseFixedLayout(void) { 4418 + if (verbose) puts("STUB: WKPageUseFixedLayout called"); 4419 + return NULL; 4420 + } 4421 + 4422 + void* WKPageValidateCommand(void) { 4423 + if (verbose) puts("STUB: WKPageValidateCommand called"); 4424 + return NULL; 4425 + } 4426 + 4427 + void* WKPageVerticalRubberBandingIsEnabled(void) { 4428 + if (verbose) puts("STUB: WKPageVerticalRubberBandingIsEnabled called"); 4429 + return NULL; 4430 + } 4431 + 4432 + void* WKPageWillHandleHorizontalScrollEvents(void) { 4433 + if (verbose) puts("STUB: WKPageWillHandleHorizontalScrollEvents called"); 4434 + return NULL; 4435 + } 4436 + 4437 + void* WKPlugInInfoBundleIdentifierKey(void) { 4438 + if (verbose) puts("STUB: WKPlugInInfoBundleIdentifierKey called"); 4439 + return NULL; 4440 + } 4441 + 4442 + void* WKPlugInInfoIsSandboxedKey(void) { 4443 + if (verbose) puts("STUB: WKPlugInInfoIsSandboxedKey called"); 4444 + return NULL; 4445 + } 4446 + 4447 + void* WKPlugInInfoLoadPolicyKey(void) { 4448 + if (verbose) puts("STUB: WKPlugInInfoLoadPolicyKey called"); 4449 + return NULL; 4450 + } 4451 + 4452 + void* WKPlugInInfoPathKey(void) { 4453 + if (verbose) puts("STUB: WKPlugInInfoPathKey called"); 4454 + return NULL; 4455 + } 4456 + 4457 + void* WKPlugInInfoUpdatePastLastBlockedVersionIsKnownAvailableKey(void) { 4458 + if (verbose) puts("STUB: WKPlugInInfoUpdatePastLastBlockedVersionIsKnownAvailableKey called"); 4459 + return NULL; 4460 + } 4461 + 4462 + void* WKPlugInInfoVersionKey(void) { 4463 + if (verbose) puts("STUB: WKPlugInInfoVersionKey called"); 4464 + return NULL; 4465 + } 4466 + 4467 + void* WKPlugInInformationReplacementObscuredKey(void) { 4468 + if (verbose) puts("STUB: WKPlugInInformationReplacementObscuredKey called"); 4469 + return NULL; 4470 + } 4471 + 4472 + void* WKPluginInformationBundleIdentifierKey(void) { 4473 + if (verbose) puts("STUB: WKPluginInformationBundleIdentifierKey called"); 4474 + return NULL; 4475 + } 4476 + 4477 + void* WKPluginInformationBundleShortVersionKey(void) { 4478 + if (verbose) puts("STUB: WKPluginInformationBundleShortVersionKey called"); 4479 + return NULL; 4480 + } 4481 + 4482 + void* WKPluginInformationBundleVersionKey(void) { 4483 + if (verbose) puts("STUB: WKPluginInformationBundleVersionKey called"); 4484 + return NULL; 4485 + } 4486 + 4487 + void* WKPluginInformationDefaultLoadPolicyKey(void) { 4488 + if (verbose) puts("STUB: WKPluginInformationDefaultLoadPolicyKey called"); 4489 + return NULL; 4490 + } 4491 + 4492 + void* WKPluginInformationDisplayNameKey(void) { 4493 + if (verbose) puts("STUB: WKPluginInformationDisplayNameKey called"); 4494 + return NULL; 4495 + } 4496 + 4497 + void* WKPluginInformationFrameURLKey(void) { 4498 + if (verbose) puts("STUB: WKPluginInformationFrameURLKey called"); 4499 + return NULL; 4500 + } 4501 + 4502 + void* WKPluginInformationHasSandboxProfileKey(void) { 4503 + if (verbose) puts("STUB: WKPluginInformationHasSandboxProfileKey called"); 4504 + return NULL; 4505 + } 4506 + 4507 + void* WKPluginInformationMIMETypeKey(void) { 4508 + if (verbose) puts("STUB: WKPluginInformationMIMETypeKey called"); 4509 + return NULL; 4510 + } 4511 + 4512 + void* WKPluginInformationPageURLKey(void) { 4513 + if (verbose) puts("STUB: WKPluginInformationPageURLKey called"); 4514 + return NULL; 4515 + } 4516 + 4517 + void* WKPluginInformationPathKey(void) { 4518 + if (verbose) puts("STUB: WKPluginInformationPathKey called"); 4519 + return NULL; 4520 + } 4521 + 4522 + void* WKPluginInformationPluginURLKey(void) { 4523 + if (verbose) puts("STUB: WKPluginInformationPluginURLKey called"); 4524 + return NULL; 4525 + } 4526 + 4527 + void* WKPluginInformationPluginspageAttributeURLKey(void) { 4528 + if (verbose) puts("STUB: WKPluginInformationPluginspageAttributeURLKey called"); 4529 + return NULL; 4530 + } 4531 + 4532 + void* WKPluginInformationUpdatePastLastBlockedVersionIsKnownAvailableKey(void) { 4533 + if (verbose) puts("STUB: WKPluginInformationUpdatePastLastBlockedVersionIsKnownAvailableKey called"); 4534 + return NULL; 4535 + } 4536 + 4537 + void* WKPointCreate(void) { 4538 + if (verbose) puts("STUB: WKPointCreate called"); 4539 + return NULL; 4540 + } 4541 + 4542 + void* WKPointGetTypeID(void) { 4543 + if (verbose) puts("STUB: WKPointGetTypeID called"); 4544 + return NULL; 4545 + } 4546 + 4547 + void* WKPointGetValue(void) { 4548 + if (verbose) puts("STUB: WKPointGetValue called"); 4549 + return NULL; 4550 + } 4551 + 4552 + void* WKPreferencesCopyCursiveFontFamily(void) { 4553 + if (verbose) puts("STUB: WKPreferencesCopyCursiveFontFamily called"); 4554 + return NULL; 4555 + } 4556 + 4557 + void* WKPreferencesCopyDefaultTextEncodingName(void) { 4558 + if (verbose) puts("STUB: WKPreferencesCopyDefaultTextEncodingName called"); 4559 + return NULL; 4560 + } 4561 + 4562 + void* WKPreferencesCopyFTPDirectoryTemplatePath(void) { 4563 + if (verbose) puts("STUB: WKPreferencesCopyFTPDirectoryTemplatePath called"); 4564 + return NULL; 4565 + } 4566 + 4567 + void* WKPreferencesCopyFantasyFontFamily(void) { 4568 + if (verbose) puts("STUB: WKPreferencesCopyFantasyFontFamily called"); 4569 + return NULL; 4570 + } 4571 + 4572 + void* WKPreferencesCopyFixedFontFamily(void) { 4573 + if (verbose) puts("STUB: WKPreferencesCopyFixedFontFamily called"); 4574 + return NULL; 4575 + } 4576 + 4577 + void* WKPreferencesCopyMediaContentTypesRequiringHardwareSupport(void) { 4578 + if (verbose) puts("STUB: WKPreferencesCopyMediaContentTypesRequiringHardwareSupport called"); 4579 + return NULL; 4580 + } 4581 + 4582 + void* WKPreferencesCopyPictographFontFamily(void) { 4583 + if (verbose) puts("STUB: WKPreferencesCopyPictographFontFamily called"); 4584 + return NULL; 4585 + } 4586 + 4587 + void* WKPreferencesCopySansSerifFontFamily(void) { 4588 + if (verbose) puts("STUB: WKPreferencesCopySansSerifFontFamily called"); 4589 + return NULL; 4590 + } 4591 + 4592 + void* WKPreferencesCopySerifFontFamily(void) { 4593 + if (verbose) puts("STUB: WKPreferencesCopySerifFontFamily called"); 4594 + return NULL; 4595 + } 4596 + 4597 + void* WKPreferencesCopyStandardFontFamily(void) { 4598 + if (verbose) puts("STUB: WKPreferencesCopyStandardFontFamily called"); 4599 + return NULL; 4600 + } 4601 + 4602 + void* WKPreferencesCreate(void) { 4603 + if (verbose) puts("STUB: WKPreferencesCreate called"); 4604 + return NULL; 4605 + } 4606 + 4607 + void* WKPreferencesCreateCopy(void) { 4608 + if (verbose) puts("STUB: WKPreferencesCreateCopy called"); 4609 + return NULL; 4610 + } 4611 + 4612 + void* WKPreferencesCreateWithIdentifier(void) { 4613 + if (verbose) puts("STUB: WKPreferencesCreateWithIdentifier called"); 4614 + return NULL; 4615 + } 4616 + 4617 + void* WKPreferencesEnableAllExperimentalFeatures(void) { 4618 + if (verbose) puts("STUB: WKPreferencesEnableAllExperimentalFeatures called"); 4619 + return NULL; 4620 + } 4621 + 4622 + void* WKPreferencesGetAVFoundationEnabled(void) { 4623 + if (verbose) puts("STUB: WKPreferencesGetAVFoundationEnabled called"); 4624 + return NULL; 4625 + } 4626 + 4627 + void* WKPreferencesGetAVFoundationNSURLSessionEnabled(void) { 4628 + if (verbose) puts("STUB: WKPreferencesGetAVFoundationNSURLSessionEnabled called"); 4629 + return NULL; 4630 + } 4631 + 4632 + void* WKPreferencesGetAccelerated2DCanvasEnabled(void) { 4633 + if (verbose) puts("STUB: WKPreferencesGetAccelerated2DCanvasEnabled called"); 4634 + return NULL; 4635 + } 4636 + 4637 + void* WKPreferencesGetAcceleratedCompositingEnabled(void) { 4638 + if (verbose) puts("STUB: WKPreferencesGetAcceleratedCompositingEnabled called"); 4639 + return NULL; 4640 + } 4641 + 4642 + void* WKPreferencesGetAcceleratedCompositingForOverflowScrollEnabled(void) { 4643 + if (verbose) puts("STUB: WKPreferencesGetAcceleratedCompositingForOverflowScrollEnabled called"); 4644 + return NULL; 4645 + } 4646 + 4647 + void* WKPreferencesGetAcceleratedDrawingEnabled(void) { 4648 + if (verbose) puts("STUB: WKPreferencesGetAcceleratedDrawingEnabled called"); 4649 + return NULL; 4650 + } 4651 + 4652 + void* WKPreferencesGetAccessibilityObjectModelEnabled(void) { 4653 + if (verbose) puts("STUB: WKPreferencesGetAccessibilityObjectModelEnabled called"); 4654 + return NULL; 4655 + } 4656 + 4657 + void* WKPreferencesGetAggressiveTileRetentionEnabled(void) { 4658 + if (verbose) puts("STUB: WKPreferencesGetAggressiveTileRetentionEnabled called"); 4659 + return NULL; 4660 + } 4661 + 4662 + void* WKPreferencesGetAllowMediaContentTypesRequiringHardwareSupportAsFallback(void) { 4663 + if (verbose) puts("STUB: WKPreferencesGetAllowMediaContentTypesRequiringHardwareSupportAsFallback called"); 4664 + return NULL; 4665 + } 4666 + 4667 + void* WKPreferencesGetAllowsAirPlayForMediaPlayback(void) { 4668 + if (verbose) puts("STUB: WKPreferencesGetAllowsAirPlayForMediaPlayback called"); 4669 + return NULL; 4670 + } 4671 + 4672 + void* WKPreferencesGetAllowsPictureInPictureMediaPlayback(void) { 4673 + if (verbose) puts("STUB: WKPreferencesGetAllowsPictureInPictureMediaPlayback called"); 4674 + return NULL; 4675 + } 4676 + 4677 + void* WKPreferencesGetAnimatedImageAsyncDecodingEnabled(void) { 4678 + if (verbose) puts("STUB: WKPreferencesGetAnimatedImageAsyncDecodingEnabled called"); 4679 + return NULL; 4680 + } 4681 + 4682 + void* WKPreferencesGetAntialiasedFontDilationEnabled(void) { 4683 + if (verbose) puts("STUB: WKPreferencesGetAntialiasedFontDilationEnabled called"); 4684 + return NULL; 4685 + } 4686 + 4687 + void* WKPreferencesGetApplePayCapabilityDisclosureAllowed(void) { 4688 + if (verbose) puts("STUB: WKPreferencesGetApplePayCapabilityDisclosureAllowed called"); 4689 + return NULL; 4690 + } 4691 + 4692 + void* WKPreferencesGetApplePayEnabled(void) { 4693 + if (verbose) puts("STUB: WKPreferencesGetApplePayEnabled called"); 4694 + return NULL; 4695 + } 4696 + 4697 + void* WKPreferencesGetApplicationChromeModeEnabled(void) { 4698 + if (verbose) puts("STUB: WKPreferencesGetApplicationChromeModeEnabled called"); 4699 + return NULL; 4700 + } 4701 + 4702 + void* WKPreferencesGetArtificialPluginInitializationDelayEnabled(void) { 4703 + if (verbose) puts("STUB: WKPreferencesGetArtificialPluginInitializationDelayEnabled called"); 4704 + return NULL; 4705 + } 4706 + 4707 + void* WKPreferencesGetAsynchronousPluginInitializationEnabled(void) { 4708 + if (verbose) puts("STUB: WKPreferencesGetAsynchronousPluginInitializationEnabled called"); 4709 + return NULL; 4710 + } 4711 + 4712 + void* WKPreferencesGetAsynchronousPluginInitializationEnabledForAllPlugins(void) { 4713 + if (verbose) puts("STUB: WKPreferencesGetAsynchronousPluginInitializationEnabledForAllPlugins called"); 4714 + return NULL; 4715 + } 4716 + 4717 + void* WKPreferencesGetAsynchronousSpellCheckingEnabled(void) { 4718 + if (verbose) puts("STUB: WKPreferencesGetAsynchronousSpellCheckingEnabled called"); 4719 + return NULL; 4720 + } 4721 + 4722 + void* WKPreferencesGetAttachmentElementEnabled(void) { 4723 + if (verbose) puts("STUB: WKPreferencesGetAttachmentElementEnabled called"); 4724 + return NULL; 4725 + } 4726 + 4727 + void* WKPreferencesGetAudioPlaybackRequiresUserGesture(void) { 4728 + if (verbose) puts("STUB: WKPreferencesGetAudioPlaybackRequiresUserGesture called"); 4729 + return NULL; 4730 + } 4731 + 4732 + void* WKPreferencesGetAuthorAndUserStylesEnabled(void) { 4733 + if (verbose) puts("STUB: WKPreferencesGetAuthorAndUserStylesEnabled called"); 4734 + return NULL; 4735 + } 4736 + 4737 + void* WKPreferencesGetAutostartOriginPlugInSnapshottingEnabled(void) { 4738 + if (verbose) puts("STUB: WKPreferencesGetAutostartOriginPlugInSnapshottingEnabled called"); 4739 + return NULL; 4740 + } 4741 + 4742 + void* WKPreferencesGetBackspaceKeyNavigationEnabled(void) { 4743 + if (verbose) puts("STUB: WKPreferencesGetBackspaceKeyNavigationEnabled called"); 4744 + return NULL; 4745 + } 4746 + 4747 + void* WKPreferencesGetBeaconAPIEnabled(void) { 4748 + if (verbose) puts("STUB: WKPreferencesGetBeaconAPIEnabled called"); 4749 + return NULL; 4750 + } 4751 + 4752 + void* WKPreferencesGetCSSAnimationTriggersEnabled(void) { 4753 + if (verbose) puts("STUB: WKPreferencesGetCSSAnimationTriggersEnabled called"); 4754 + return NULL; 4755 + } 4756 + 4757 + void* WKPreferencesGetCanvasUsesAcceleratedDrawing(void) { 4758 + if (verbose) puts("STUB: WKPreferencesGetCanvasUsesAcceleratedDrawing called"); 4759 + return NULL; 4760 + } 4761 + 4762 + void* WKPreferencesGetCaretBrowsingEnabled(void) { 4763 + if (verbose) puts("STUB: WKPreferencesGetCaretBrowsingEnabled called"); 4764 + return NULL; 4765 + } 4766 + 4767 + void* WKPreferencesGetCompositingBordersVisible(void) { 4768 + if (verbose) puts("STUB: WKPreferencesGetCompositingBordersVisible called"); 4769 + return NULL; 4770 + } 4771 + 4772 + void* WKPreferencesGetCompositingRepaintCountersVisible(void) { 4773 + if (verbose) puts("STUB: WKPreferencesGetCompositingRepaintCountersVisible called"); 4774 + return NULL; 4775 + } 4776 + 4777 + void* WKPreferencesGetCookieEnabled(void) { 4778 + if (verbose) puts("STUB: WKPreferencesGetCookieEnabled called"); 4779 + return NULL; 4780 + } 4781 + 4782 + void* WKPreferencesGetCustomPasteboardDataEnabled(void) { 4783 + if (verbose) puts("STUB: WKPreferencesGetCustomPasteboardDataEnabled called"); 4784 + return NULL; 4785 + } 4786 + 4787 + void* WKPreferencesGetDNSPrefetchingEnabled(void) { 4788 + if (verbose) puts("STUB: WKPreferencesGetDNSPrefetchingEnabled called"); 4789 + return NULL; 4790 + } 4791 + 4792 + void* WKPreferencesGetDOMPasteAllowed(void) { 4793 + if (verbose) puts("STUB: WKPreferencesGetDOMPasteAllowed called"); 4794 + return NULL; 4795 + } 4796 + 4797 + void* WKPreferencesGetDOMTimersThrottlingEnabled(void) { 4798 + if (verbose) puts("STUB: WKPreferencesGetDOMTimersThrottlingEnabled called"); 4799 + return NULL; 4800 + } 4801 + 4802 + void* WKPreferencesGetDataTransferItemsEnabled(void) { 4803 + if (verbose) puts("STUB: WKPreferencesGetDataTransferItemsEnabled called"); 4804 + return NULL; 4805 + } 4806 + 4807 + void* WKPreferencesGetDatabasesEnabled(void) { 4808 + if (verbose) puts("STUB: WKPreferencesGetDatabasesEnabled called"); 4809 + return NULL; 4810 + } 4811 + 4812 + void* WKPreferencesGetDefaultFixedFontSize(void) { 4813 + if (verbose) puts("STUB: WKPreferencesGetDefaultFixedFontSize called"); 4814 + return NULL; 4815 + } 4816 + 4817 + void* WKPreferencesGetDefaultFontSize(void) { 4818 + if (verbose) puts("STUB: WKPreferencesGetDefaultFontSize called"); 4819 + return NULL; 4820 + } 4821 + 4822 + void* WKPreferencesGetDeferredCSSParserEnabled(void) { 4823 + if (verbose) puts("STUB: WKPreferencesGetDeferredCSSParserEnabled called"); 4824 + return NULL; 4825 + } 4826 + 4827 + void* WKPreferencesGetDeveloperExtrasEnabled(void) { 4828 + if (verbose) puts("STUB: WKPreferencesGetDeveloperExtrasEnabled called"); 4829 + return NULL; 4830 + } 4831 + 4832 + void* WKPreferencesGetDiagnosticLoggingEnabled(void) { 4833 + if (verbose) puts("STUB: WKPreferencesGetDiagnosticLoggingEnabled called"); 4834 + return NULL; 4835 + } 4836 + 4837 + void* WKPreferencesGetDirectoryUploadEnabled(void) { 4838 + if (verbose) puts("STUB: WKPreferencesGetDirectoryUploadEnabled called"); 4839 + return NULL; 4840 + } 4841 + 4842 + void* WKPreferencesGetDisplayContentsEnabled(void) { 4843 + if (verbose) puts("STUB: WKPreferencesGetDisplayContentsEnabled called"); 4844 + return NULL; 4845 + } 4846 + 4847 + void* WKPreferencesGetDownloadAttributeEnabled(void) { 4848 + if (verbose) puts("STUB: WKPreferencesGetDownloadAttributeEnabled called"); 4849 + return NULL; 4850 + } 4851 + 4852 + void* WKPreferencesGetEditableLinkBehavior(void) { 4853 + if (verbose) puts("STUB: WKPreferencesGetEditableLinkBehavior called"); 4854 + return NULL; 4855 + } 4856 + 4857 + void* WKPreferencesGetEnableInheritURIQueryComponent(void) { 4858 + if (verbose) puts("STUB: WKPreferencesGetEnableInheritURIQueryComponent called"); 4859 + return NULL; 4860 + } 4861 + 4862 + void* WKPreferencesGetEncodingDetectorEnabled(void) { 4863 + if (verbose) puts("STUB: WKPreferencesGetEncodingDetectorEnabled called"); 4864 + return NULL; 4865 + } 4866 + 4867 + void* WKPreferencesGetEnumeratingAllNetworkInterfacesEnabled(void) { 4868 + if (verbose) puts("STUB: WKPreferencesGetEnumeratingAllNetworkInterfacesEnabled called"); 4869 + return NULL; 4870 + } 4871 + 4872 + void* WKPreferencesGetFetchAPIEnabled(void) { 4873 + if (verbose) puts("STUB: WKPreferencesGetFetchAPIEnabled called"); 4874 + return NULL; 4875 + } 4876 + 4877 + void* WKPreferencesGetFetchAPIKeepAliveEnabled(void) { 4878 + if (verbose) puts("STUB: WKPreferencesGetFetchAPIKeepAliveEnabled called"); 4879 + return NULL; 4880 + } 4881 + 4882 + void* WKPreferencesGetFileAccessFromFileURLsAllowed(void) { 4883 + if (verbose) puts("STUB: WKPreferencesGetFileAccessFromFileURLsAllowed called"); 4884 + return NULL; 4885 + } 4886 + 4887 + void* WKPreferencesGetFontSmoothingLevel(void) { 4888 + if (verbose) puts("STUB: WKPreferencesGetFontSmoothingLevel called"); 4889 + return NULL; 4890 + } 4891 + 4892 + void* WKPreferencesGetForceFTPDirectoryListings(void) { 4893 + if (verbose) puts("STUB: WKPreferencesGetForceFTPDirectoryListings called"); 4894 + return NULL; 4895 + } 4896 + 4897 + void* WKPreferencesGetForceSoftwareWebGLRendering(void) { 4898 + if (verbose) puts("STUB: WKPreferencesGetForceSoftwareWebGLRendering called"); 4899 + return NULL; 4900 + } 4901 + 4902 + void* WKPreferencesGetFrameFlatteningEnabled(void) { 4903 + if (verbose) puts("STUB: WKPreferencesGetFrameFlatteningEnabled called"); 4904 + return NULL; 4905 + } 4906 + 4907 + void* WKPreferencesGetFullScreenEnabled(void) { 4908 + if (verbose) puts("STUB: WKPreferencesGetFullScreenEnabled called"); 4909 + return NULL; 4910 + } 4911 + 4912 + void* WKPreferencesGetGamepadsEnabled(void) { 4913 + if (verbose) puts("STUB: WKPreferencesGetGamepadsEnabled called"); 4914 + return NULL; 4915 + } 4916 + 4917 + void* WKPreferencesGetHTTPEquivEnabled(void) { 4918 + if (verbose) puts("STUB: WKPreferencesGetHTTPEquivEnabled called"); 4919 + return NULL; 4920 + } 4921 + 4922 + void* WKPreferencesGetHiddenPageCSSAnimationSuspensionEnabled(void) { 4923 + if (verbose) puts("STUB: WKPreferencesGetHiddenPageCSSAnimationSuspensionEnabled called"); 4924 + return NULL; 4925 + } 4926 + 4927 + void* WKPreferencesGetHiddenPageDOMTimerThrottlingAutoIncreases(void) { 4928 + if (verbose) puts("STUB: WKPreferencesGetHiddenPageDOMTimerThrottlingAutoIncreases called"); 4929 + return NULL; 4930 + } 4931 + 4932 + void* WKPreferencesGetHiddenPageDOMTimerThrottlingEnabled(void) { 4933 + if (verbose) puts("STUB: WKPreferencesGetHiddenPageDOMTimerThrottlingEnabled called"); 4934 + return NULL; 4935 + } 4936 + 4937 + void* WKPreferencesGetHixie76WebSocketProtocolEnabled(void) { 4938 + if (verbose) puts("STUB: WKPreferencesGetHixie76WebSocketProtocolEnabled called"); 4939 + return NULL; 4940 + } 4941 + 4942 + void* WKPreferencesGetHyperlinkAuditingEnabled(void) { 4943 + if (verbose) puts("STUB: WKPreferencesGetHyperlinkAuditingEnabled called"); 4944 + return NULL; 4945 + } 4946 + 4947 + void* WKPreferencesGetICECandidateFilteringEnabled(void) { 4948 + if (verbose) puts("STUB: WKPreferencesGetICECandidateFilteringEnabled called"); 4949 + return NULL; 4950 + } 4951 + 4952 + void* WKPreferencesGetIgnoreViewportScalingConstraints(void) { 4953 + if (verbose) puts("STUB: WKPreferencesGetIgnoreViewportScalingConstraints called"); 4954 + return NULL; 4955 + } 4956 + 4957 + void* WKPreferencesGetImageControlsEnabled(void) { 4958 + if (verbose) puts("STUB: WKPreferencesGetImageControlsEnabled called"); 4959 + return NULL; 4960 + } 4961 + 4962 + void* WKPreferencesGetInactiveMediaCaptureSteamRepromptIntervalInMinutes(void) { 4963 + if (verbose) puts("STUB: WKPreferencesGetInactiveMediaCaptureSteamRepromptIntervalInMinutes called"); 4964 + return NULL; 4965 + } 4966 + 4967 + void* WKPreferencesGetIncrementalRenderingSuppressionTimeout(void) { 4968 + if (verbose) puts("STUB: WKPreferencesGetIncrementalRenderingSuppressionTimeout called"); 4969 + return NULL; 4970 + } 4971 + 4972 + void* WKPreferencesGetInlineMediaPlaybackRequiresPlaysInlineAttribute(void) { 4973 + if (verbose) puts("STUB: WKPreferencesGetInlineMediaPlaybackRequiresPlaysInlineAttribute called"); 4974 + return NULL; 4975 + } 4976 + 4977 + void* WKPreferencesGetInspectorAdditionsEnabled(void) { 4978 + if (verbose) puts("STUB: WKPreferencesGetInspectorAdditionsEnabled called"); 4979 + return NULL; 4980 + } 4981 + 4982 + void* WKPreferencesGetInspectorUsesWebKitUserInterface(void) { 4983 + if (verbose) puts("STUB: WKPreferencesGetInspectorUsesWebKitUserInterface called"); 4984 + return NULL; 4985 + } 4986 + 4987 + void* WKPreferencesGetInteractiveFormValidationEnabled(void) { 4988 + if (verbose) puts("STUB: WKPreferencesGetInteractiveFormValidationEnabled called"); 4989 + return NULL; 4990 + } 4991 + 4992 + void* WKPreferencesGetIntersectionObserverEnabled(void) { 4993 + if (verbose) puts("STUB: WKPreferencesGetIntersectionObserverEnabled called"); 4994 + return NULL; 4995 + } 4996 + 4997 + void* WKPreferencesGetInvisibleMediaAutoplayPermitted(void) { 4998 + if (verbose) puts("STUB: WKPreferencesGetInvisibleMediaAutoplayPermitted called"); 4999 + return NULL; 5000 + } 5001 + 5002 + void* WKPreferencesGetIsSecureContextAttributeEnabled(void) { 5003 + if (verbose) puts("STUB: WKPreferencesGetIsSecureContextAttributeEnabled called"); 5004 + return NULL; 5005 + } 5006 + 5007 + void* WKPreferencesGetJavaEnabled(void) { 5008 + if (verbose) puts("STUB: WKPreferencesGetJavaEnabled called"); 5009 + return NULL; 5010 + } 5011 + 5012 + void* WKPreferencesGetJavaEnabledForLocalFiles(void) { 5013 + if (verbose) puts("STUB: WKPreferencesGetJavaEnabledForLocalFiles called"); 5014 + return NULL; 5015 + } 5016 + 5017 + void* WKPreferencesGetJavaScriptCanAccessClipboard(void) { 5018 + if (verbose) puts("STUB: WKPreferencesGetJavaScriptCanAccessClipboard called"); 5019 + return NULL; 5020 + } 5021 + 5022 + void* WKPreferencesGetJavaScriptCanOpenWindowsAutomatically(void) { 5023 + if (verbose) puts("STUB: WKPreferencesGetJavaScriptCanOpenWindowsAutomatically called"); 5024 + return NULL; 5025 + } 5026 + 5027 + void* WKPreferencesGetJavaScriptEnabled(void) { 5028 + if (verbose) puts("STUB: WKPreferencesGetJavaScriptEnabled called"); 5029 + return NULL; 5030 + } 5031 + 5032 + void* WKPreferencesGetJavaScriptMarkupEnabled(void) { 5033 + if (verbose) puts("STUB: WKPreferencesGetJavaScriptMarkupEnabled called"); 5034 + return NULL; 5035 + } 5036 + 5037 + void* WKPreferencesGetJavaScriptRuntimeFlags(void) { 5038 + if (verbose) puts("STUB: WKPreferencesGetJavaScriptRuntimeFlags called"); 5039 + return NULL; 5040 + } 5041 + 5042 + void* WKPreferencesGetLargeImageAsyncDecodingEnabled(void) { 5043 + if (verbose) puts("STUB: WKPreferencesGetLargeImageAsyncDecodingEnabled called"); 5044 + return NULL; 5045 + } 5046 + 5047 + void* WKPreferencesGetLegacyEncryptedMediaAPIEnabled(void) { 5048 + if (verbose) puts("STUB: WKPreferencesGetLegacyEncryptedMediaAPIEnabled called"); 5049 + return NULL; 5050 + } 5051 + 5052 + void* WKPreferencesGetLinkPreloadEnabled(void) { 5053 + if (verbose) puts("STUB: WKPreferencesGetLinkPreloadEnabled called"); 5054 + return NULL; 5055 + } 5056 + 5057 + void* WKPreferencesGetLoadsImagesAutomatically(void) { 5058 + if (verbose) puts("STUB: WKPreferencesGetLoadsImagesAutomatically called"); 5059 + return NULL; 5060 + } 5061 + 5062 + void* WKPreferencesGetLoadsSiteIconsIgnoringImageLoadingPreference(void) { 5063 + if (verbose) puts("STUB: WKPreferencesGetLoadsSiteIconsIgnoringImageLoadingPreference called"); 5064 + return NULL; 5065 + } 5066 + 5067 + void* WKPreferencesGetLocalFileContentSniffingEnabled(void) { 5068 + if (verbose) puts("STUB: WKPreferencesGetLocalFileContentSniffingEnabled called"); 5069 + return NULL; 5070 + } 5071 + 5072 + void* WKPreferencesGetLocalStorageEnabled(void) { 5073 + if (verbose) puts("STUB: WKPreferencesGetLocalStorageEnabled called"); 5074 + return NULL; 5075 + } 5076 + 5077 + void* WKPreferencesGetLogsPageMessagesToSystemConsoleEnabled(void) { 5078 + if (verbose) puts("STUB: WKPreferencesGetLogsPageMessagesToSystemConsoleEnabled called"); 5079 + return NULL; 5080 + } 5081 + 5082 + void* WKPreferencesGetLongMousePressEnabled(void) { 5083 + if (verbose) puts("STUB: WKPreferencesGetLongMousePressEnabled called"); 5084 + return NULL; 5085 + } 5086 + 5087 + void* WKPreferencesGetMainContentUserGestureOverrideEnabled(void) { 5088 + if (verbose) puts("STUB: WKPreferencesGetMainContentUserGestureOverrideEnabled called"); 5089 + return NULL; 5090 + } 5091 + 5092 + void* WKPreferencesGetMediaCapabilitiesEnabled(void) { 5093 + if (verbose) puts("STUB: WKPreferencesGetMediaCapabilitiesEnabled called"); 5094 + return NULL; 5095 + } 5096 + 5097 + void* WKPreferencesGetMediaCaptureRequiresSecureConnection(void) { 5098 + if (verbose) puts("STUB: WKPreferencesGetMediaCaptureRequiresSecureConnection called"); 5099 + return NULL; 5100 + } 5101 + 5102 + void* WKPreferencesGetMediaControlsScaleWithPageZoom(void) { 5103 + if (verbose) puts("STUB: WKPreferencesGetMediaControlsScaleWithPageZoom called"); 5104 + return NULL; 5105 + } 5106 + 5107 + void* WKPreferencesGetMediaDevicesEnabled(void) { 5108 + if (verbose) puts("STUB: WKPreferencesGetMediaDevicesEnabled called"); 5109 + return NULL; 5110 + } 5111 + 5112 + void* WKPreferencesGetMediaPlaybackAllowsInline(void) { 5113 + if (verbose) puts("STUB: WKPreferencesGetMediaPlaybackAllowsInline called"); 5114 + return NULL; 5115 + } 5116 + 5117 + void* WKPreferencesGetMediaPlaybackRequiresUserGesture(void) { 5118 + if (verbose) puts("STUB: WKPreferencesGetMediaPlaybackRequiresUserGesture called"); 5119 + return NULL; 5120 + } 5121 + 5122 + void* WKPreferencesGetMediaPreloadingEnabled(void) { 5123 + if (verbose) puts("STUB: WKPreferencesGetMediaPreloadingEnabled called"); 5124 + return NULL; 5125 + } 5126 + 5127 + void* WKPreferencesGetMediaSourceEnabled(void) { 5128 + if (verbose) puts("STUB: WKPreferencesGetMediaSourceEnabled called"); 5129 + return NULL; 5130 + } 5131 + 5132 + void* WKPreferencesGetMediaStreamEnabled(void) { 5133 + if (verbose) puts("STUB: WKPreferencesGetMediaStreamEnabled called"); 5134 + return NULL; 5135 + } 5136 + 5137 + void* WKPreferencesGetMediaUserGestureInheritsFromDocument(void) { 5138 + if (verbose) puts("STUB: WKPreferencesGetMediaUserGestureInheritsFromDocument called"); 5139 + return NULL; 5140 + } 5141 + 5142 + void* WKPreferencesGetMenuItemElementEnabled(void) { 5143 + if (verbose) puts("STUB: WKPreferencesGetMenuItemElementEnabled called"); 5144 + return NULL; 5145 + } 5146 + 5147 + void* WKPreferencesGetMetaRefreshEnabled(void) { 5148 + if (verbose) puts("STUB: WKPreferencesGetMetaRefreshEnabled called"); 5149 + return NULL; 5150 + } 5151 + 5152 + void* WKPreferencesGetMinimumFontSize(void) { 5153 + if (verbose) puts("STUB: WKPreferencesGetMinimumFontSize called"); 5154 + return NULL; 5155 + } 5156 + 5157 + void* WKPreferencesGetMinimumZoomFontSize(void) { 5158 + if (verbose) puts("STUB: WKPreferencesGetMinimumZoomFontSize called"); 5159 + return NULL; 5160 + } 5161 + 5162 + void* WKPreferencesGetMockCaptureDevicesEnabled(void) { 5163 + if (verbose) puts("STUB: WKPreferencesGetMockCaptureDevicesEnabled called"); 5164 + return NULL; 5165 + } 5166 + 5167 + void* WKPreferencesGetMockScrollbarsEnabled(void) { 5168 + if (verbose) puts("STUB: WKPreferencesGetMockScrollbarsEnabled called"); 5169 + return NULL; 5170 + } 5171 + 5172 + void* WKPreferencesGetModernMediaControlsEnabled(void) { 5173 + if (verbose) puts("STUB: WKPreferencesGetModernMediaControlsEnabled called"); 5174 + return NULL; 5175 + } 5176 + 5177 + void* WKPreferencesGetNeedsSiteSpecificQuirks(void) { 5178 + if (verbose) puts("STUB: WKPreferencesGetNeedsSiteSpecificQuirks called"); 5179 + return NULL; 5180 + } 5181 + 5182 + void* WKPreferencesGetNeedsStorageAccessFromFileURLsQuirk(void) { 5183 + if (verbose) puts("STUB: WKPreferencesGetNeedsStorageAccessFromFileURLsQuirk called"); 5184 + return NULL; 5185 + } 5186 + 5187 + void* WKPreferencesGetNewBlockInsideInlineModelEnabled(void) { 5188 + if (verbose) puts("STUB: WKPreferencesGetNewBlockInsideInlineModelEnabled called"); 5189 + return NULL; 5190 + } 5191 + 5192 + void* WKPreferencesGetNotificationsEnabled(void) { 5193 + if (verbose) puts("STUB: WKPreferencesGetNotificationsEnabled called"); 5194 + return NULL; 5195 + } 5196 + 5197 + void* WKPreferencesGetOfflineWebApplicationCacheEnabled(void) { 5198 + if (verbose) puts("STUB: WKPreferencesGetOfflineWebApplicationCacheEnabled called"); 5199 + return NULL; 5200 + } 5201 + 5202 + void* WKPreferencesGetPDFPluginEnabled(void) { 5203 + if (verbose) puts("STUB: WKPreferencesGetPDFPluginEnabled called"); 5204 + return NULL; 5205 + } 5206 + 5207 + void* WKPreferencesGetPageCacheEnabled(void) { 5208 + if (verbose) puts("STUB: WKPreferencesGetPageCacheEnabled called"); 5209 + return NULL; 5210 + } 5211 + 5212 + void* WKPreferencesGetPageCacheSupportsPlugins(void) { 5213 + if (verbose) puts("STUB: WKPreferencesGetPageCacheSupportsPlugins called"); 5214 + return NULL; 5215 + } 5216 + 5217 + void* WKPreferencesGetPageVisibilityBasedProcessSuppressionEnabled(void) { 5218 + if (verbose) puts("STUB: WKPreferencesGetPageVisibilityBasedProcessSuppressionEnabled called"); 5219 + return NULL; 5220 + } 5221 + 5222 + void* WKPreferencesGetPaginateDuringLayoutEnabled(void) { 5223 + if (verbose) puts("STUB: WKPreferencesGetPaginateDuringLayoutEnabled called"); 5224 + return NULL; 5225 + } 5226 + 5227 + void* WKPreferencesGetPeerConnectionEnabled(void) { 5228 + if (verbose) puts("STUB: WKPreferencesGetPeerConnectionEnabled called"); 5229 + return NULL; 5230 + } 5231 + 5232 + void* WKPreferencesGetPlugInSnapshottingEnabled(void) { 5233 + if (verbose) puts("STUB: WKPreferencesGetPlugInSnapshottingEnabled called"); 5234 + return NULL; 5235 + } 5236 + 5237 + void* WKPreferencesGetPluginsEnabled(void) { 5238 + if (verbose) puts("STUB: WKPreferencesGetPluginsEnabled called"); 5239 + return NULL; 5240 + } 5241 + 5242 + void* WKPreferencesGetPrimaryPlugInSnapshotDetectionEnabled(void) { 5243 + if (verbose) puts("STUB: WKPreferencesGetPrimaryPlugInSnapshotDetectionEnabled called"); 5244 + return NULL; 5245 + } 5246 + 5247 + void* WKPreferencesGetPrivateBrowsingEnabled(void) { 5248 + if (verbose) puts("STUB: WKPreferencesGetPrivateBrowsingEnabled called"); 5249 + return NULL; 5250 + } 5251 + 5252 + void* WKPreferencesGetQTKitEnabled(void) { 5253 + if (verbose) puts("STUB: WKPreferencesGetQTKitEnabled called"); 5254 + return NULL; 5255 + } 5256 + 5257 + void* WKPreferencesGetRequestAnimationFrameEnabled(void) { 5258 + if (verbose) puts("STUB: WKPreferencesGetRequestAnimationFrameEnabled called"); 5259 + return NULL; 5260 + } 5261 + 5262 + void* WKPreferencesGetResourceTimingEnabled(void) { 5263 + if (verbose) puts("STUB: WKPreferencesGetResourceTimingEnabled called"); 5264 + return NULL; 5265 + } 5266 + 5267 + void* WKPreferencesGetResourceUsageOverlayVisible(void) { 5268 + if (verbose) puts("STUB: WKPreferencesGetResourceUsageOverlayVisible called"); 5269 + return NULL; 5270 + } 5271 + 5272 + void* WKPreferencesGetScrollingPerformanceLoggingEnabled(void) { 5273 + if (verbose) puts("STUB: WKPreferencesGetScrollingPerformanceLoggingEnabled called"); 5274 + return NULL; 5275 + } 5276 + 5277 + void* WKPreferencesGetSelectTrailingWhitespaceEnabled(void) { 5278 + if (verbose) puts("STUB: WKPreferencesGetSelectTrailingWhitespaceEnabled called"); 5279 + return NULL; 5280 + } 5281 + 5282 + void* WKPreferencesGetSelectionPaintingWithoutSelectionGapsEnabled(void) { 5283 + if (verbose) puts("STUB: WKPreferencesGetSelectionPaintingWithoutSelectionGapsEnabled called"); 5284 + return NULL; 5285 + } 5286 + 5287 + void* WKPreferencesGetServiceControlsEnabled(void) { 5288 + if (verbose) puts("STUB: WKPreferencesGetServiceControlsEnabled called"); 5289 + return NULL; 5290 + } 5291 + 5292 + void* WKPreferencesGetShouldAllowUserInstalledFonts(void) { 5293 + if (verbose) puts("STUB: WKPreferencesGetShouldAllowUserInstalledFonts called"); 5294 + return NULL; 5295 + } 5296 + 5297 + void* WKPreferencesGetShouldConvertPositionStyleOnCopy(void) { 5298 + if (verbose) puts("STUB: WKPreferencesGetShouldConvertPositionStyleOnCopy called"); 5299 + return NULL; 5300 + } 5301 + 5302 + void* WKPreferencesGetShouldDisplayCaptions(void) { 5303 + if (verbose) puts("STUB: WKPreferencesGetShouldDisplayCaptions called"); 5304 + return NULL; 5305 + } 5306 + 5307 + void* WKPreferencesGetShouldDisplaySubtitles(void) { 5308 + if (verbose) puts("STUB: WKPreferencesGetShouldDisplaySubtitles called"); 5309 + return NULL; 5310 + } 5311 + 5312 + void* WKPreferencesGetShouldDisplayTextDescriptions(void) { 5313 + if (verbose) puts("STUB: WKPreferencesGetShouldDisplayTextDescriptions called"); 5314 + return NULL; 5315 + } 5316 + 5317 + void* WKPreferencesGetShouldPrintBackgrounds(void) { 5318 + if (verbose) puts("STUB: WKPreferencesGetShouldPrintBackgrounds called"); 5319 + return NULL; 5320 + } 5321 + 5322 + void* WKPreferencesGetShouldRespectImageOrientation(void) { 5323 + if (verbose) puts("STUB: WKPreferencesGetShouldRespectImageOrientation called"); 5324 + return NULL; 5325 + } 5326 + 5327 + void* WKPreferencesGetShouldSuppressKeyboardInputDuringProvisionalNavigation(void) { 5328 + if (verbose) puts("STUB: WKPreferencesGetShouldSuppressKeyboardInputDuringProvisionalNavigation called"); 5329 + return NULL; 5330 + } 5331 + 5332 + void* WKPreferencesGetShowsToolTipOverTruncatedText(void) { 5333 + if (verbose) puts("STUB: WKPreferencesGetShowsToolTipOverTruncatedText called"); 5334 + return NULL; 5335 + } 5336 + 5337 + void* WKPreferencesGetShowsURLsInToolTipsEnabled(void) { 5338 + if (verbose) puts("STUB: WKPreferencesGetShowsURLsInToolTipsEnabled called"); 5339 + return NULL; 5340 + } 5341 + 5342 + void* WKPreferencesGetSimpleLineLayoutDebugBordersEnabled(void) { 5343 + if (verbose) puts("STUB: WKPreferencesGetSimpleLineLayoutDebugBordersEnabled called"); 5344 + return NULL; 5345 + } 5346 + 5347 + void* WKPreferencesGetSimpleLineLayoutEnabled(void) { 5348 + if (verbose) puts("STUB: WKPreferencesGetSimpleLineLayoutEnabled called"); 5349 + return NULL; 5350 + } 5351 + 5352 + void* WKPreferencesGetSmartInsertDeleteEnabled(void) { 5353 + if (verbose) puts("STUB: WKPreferencesGetSmartInsertDeleteEnabled called"); 5354 + return NULL; 5355 + } 5356 + 5357 + void* WKPreferencesGetSnapshotAllPlugIns(void) { 5358 + if (verbose) puts("STUB: WKPreferencesGetSnapshotAllPlugIns called"); 5359 + return NULL; 5360 + } 5361 + 5362 + void* WKPreferencesGetSpatialNavigationEnabled(void) { 5363 + if (verbose) puts("STUB: WKPreferencesGetSpatialNavigationEnabled called"); 5364 + return NULL; 5365 + } 5366 + 5367 + void* WKPreferencesGetStorageAccessAPIEnabled(void) { 5368 + if (verbose) puts("STUB: WKPreferencesGetStorageAccessAPIEnabled called"); 5369 + return NULL; 5370 + } 5371 + 5372 + void* WKPreferencesGetStorageBlockingPolicy(void) { 5373 + if (verbose) puts("STUB: WKPreferencesGetStorageBlockingPolicy called"); 5374 + return NULL; 5375 + } 5376 + 5377 + void* WKPreferencesGetSubpixelAntialiasedLayerTextEnabled(void) { 5378 + if (verbose) puts("STUB: WKPreferencesGetSubpixelAntialiasedLayerTextEnabled called"); 5379 + return NULL; 5380 + } 5381 + 5382 + void* WKPreferencesGetSubpixelCSSOMElementMetricsEnabled(void) { 5383 + if (verbose) puts("STUB: WKPreferencesGetSubpixelCSSOMElementMetricsEnabled called"); 5384 + return NULL; 5385 + } 5386 + 5387 + void* WKPreferencesGetSuppressesIncrementalRendering(void) { 5388 + if (verbose) puts("STUB: WKPreferencesGetSuppressesIncrementalRendering called"); 5389 + return NULL; 5390 + } 5391 + 5392 + void* WKPreferencesGetTabToLinksEnabled(void) { 5393 + if (verbose) puts("STUB: WKPreferencesGetTabToLinksEnabled called"); 5394 + return NULL; 5395 + } 5396 + 5397 + void* WKPreferencesGetTabsToLinks(void) { 5398 + if (verbose) puts("STUB: WKPreferencesGetTabsToLinks called"); 5399 + return NULL; 5400 + } 5401 + 5402 + void* WKPreferencesGetTelephoneNumberParsingEnabled(void) { 5403 + if (verbose) puts("STUB: WKPreferencesGetTelephoneNumberParsingEnabled called"); 5404 + return NULL; 5405 + } 5406 + 5407 + void* WKPreferencesGetTextAreasAreResizable(void) { 5408 + if (verbose) puts("STUB: WKPreferencesGetTextAreasAreResizable called"); 5409 + return NULL; 5410 + } 5411 + 5412 + void* WKPreferencesGetTextAutosizingEnabled(void) { 5413 + if (verbose) puts("STUB: WKPreferencesGetTextAutosizingEnabled called"); 5414 + return NULL; 5415 + } 5416 + 5417 + void* WKPreferencesGetThreadedScrollingEnabled(void) { 5418 + if (verbose) puts("STUB: WKPreferencesGetThreadedScrollingEnabled called"); 5419 + return NULL; 5420 + } 5421 + 5422 + void* WKPreferencesGetTiledScrollingIndicatorVisible(void) { 5423 + if (verbose) puts("STUB: WKPreferencesGetTiledScrollingIndicatorVisible called"); 5424 + return NULL; 5425 + } 5426 + 5427 + void* WKPreferencesGetTypeID(void) { 5428 + if (verbose) puts("STUB: WKPreferencesGetTypeID called"); 5429 + return NULL; 5430 + } 5431 + 5432 + void* WKPreferencesGetUniversalAccessFromFileURLsAllowed(void) { 5433 + if (verbose) puts("STUB: WKPreferencesGetUniversalAccessFromFileURLsAllowed called"); 5434 + return NULL; 5435 + } 5436 + 5437 + void* WKPreferencesGetUseGiantTiles(void) { 5438 + if (verbose) puts("STUB: WKPreferencesGetUseGiantTiles called"); 5439 + return NULL; 5440 + } 5441 + 5442 + void* WKPreferencesGetUserInterfaceDirectionPolicy(void) { 5443 + if (verbose) puts("STUB: WKPreferencesGetUserInterfaceDirectionPolicy called"); 5444 + return NULL; 5445 + } 5446 + 5447 + void* WKPreferencesGetUserTimingEnabled(void) { 5448 + if (verbose) puts("STUB: WKPreferencesGetUserTimingEnabled called"); 5449 + return NULL; 5450 + } 5451 + 5452 + void* WKPreferencesGetVideoPlaybackRequiresUserGesture(void) { 5453 + if (verbose) puts("STUB: WKPreferencesGetVideoPlaybackRequiresUserGesture called"); 5454 + return NULL; 5455 + } 5456 + 5457 + void* WKPreferencesGetViewGestureDebuggingEnabled(void) { 5458 + if (verbose) puts("STUB: WKPreferencesGetViewGestureDebuggingEnabled called"); 5459 + return NULL; 5460 + } 5461 + 5462 + void* WKPreferencesGetVisibleDebugOverlayRegions(void) { 5463 + if (verbose) puts("STUB: WKPreferencesGetVisibleDebugOverlayRegions called"); 5464 + return NULL; 5465 + } 5466 + 5467 + void* WKPreferencesGetWebAnimationsEnabled(void) { 5468 + if (verbose) puts("STUB: WKPreferencesGetWebAnimationsEnabled called"); 5469 + return NULL; 5470 + } 5471 + 5472 + void* WKPreferencesGetWebArchiveDebugModeEnabled(void) { 5473 + if (verbose) puts("STUB: WKPreferencesGetWebArchiveDebugModeEnabled called"); 5474 + return NULL; 5475 + } 5476 + 5477 + void* WKPreferencesGetWebAudioEnabled(void) { 5478 + if (verbose) puts("STUB: WKPreferencesGetWebAudioEnabled called"); 5479 + return NULL; 5480 + } 5481 + 5482 + void* WKPreferencesGetWebAuthenticationEnabled(void) { 5483 + if (verbose) puts("STUB: WKPreferencesGetWebAuthenticationEnabled called"); 5484 + return NULL; 5485 + } 5486 + 5487 + void* WKPreferencesGetWebGLEnabled(void) { 5488 + if (verbose) puts("STUB: WKPreferencesGetWebGLEnabled called"); 5489 + return NULL; 5490 + } 5491 + 5492 + void* WKPreferencesGetWebRTCLegacyAPIEnabled(void) { 5493 + if (verbose) puts("STUB: WKPreferencesGetWebRTCLegacyAPIEnabled called"); 5494 + return NULL; 5495 + } 5496 + 5497 + void* WKPreferencesGetWebSecurityEnabled(void) { 5498 + if (verbose) puts("STUB: WKPreferencesGetWebSecurityEnabled called"); 5499 + return NULL; 5500 + } 5501 + 5502 + void* WKPreferencesGetXSSAuditorEnabled(void) { 5503 + if (verbose) puts("STUB: WKPreferencesGetXSSAuditorEnabled called"); 5504 + return NULL; 5505 + } 5506 + 5507 + void* WKPreferencesResetTestRunnerOverrides(void) { 5508 + if (verbose) puts("STUB: WKPreferencesResetTestRunnerOverrides called"); 5509 + return NULL; 5510 + } 5511 + 5512 + void* WKPreferencesSetAVFoundationEnabled(void) { 5513 + if (verbose) puts("STUB: WKPreferencesSetAVFoundationEnabled called"); 5514 + return NULL; 5515 + } 5516 + 5517 + void* WKPreferencesSetAVFoundationNSURLSessionEnabled(void) { 5518 + if (verbose) puts("STUB: WKPreferencesSetAVFoundationNSURLSessionEnabled called"); 5519 + return NULL; 5520 + } 5521 + 5522 + void* WKPreferencesSetAccelerated2DCanvasEnabled(void) { 5523 + if (verbose) puts("STUB: WKPreferencesSetAccelerated2DCanvasEnabled called"); 5524 + return NULL; 5525 + } 5526 + 5527 + void* WKPreferencesSetAcceleratedCompositingEnabled(void) { 5528 + if (verbose) puts("STUB: WKPreferencesSetAcceleratedCompositingEnabled called"); 5529 + return NULL; 5530 + } 5531 + 5532 + void* WKPreferencesSetAcceleratedCompositingForOverflowScrollEnabled(void) { 5533 + if (verbose) puts("STUB: WKPreferencesSetAcceleratedCompositingForOverflowScrollEnabled called"); 5534 + return NULL; 5535 + } 5536 + 5537 + void* WKPreferencesSetAcceleratedDrawingEnabled(void) { 5538 + if (verbose) puts("STUB: WKPreferencesSetAcceleratedDrawingEnabled called"); 5539 + return NULL; 5540 + } 5541 + 5542 + void* WKPreferencesSetAccessibilityObjectModelEnabled(void) { 5543 + if (verbose) puts("STUB: WKPreferencesSetAccessibilityObjectModelEnabled called"); 5544 + return NULL; 5545 + } 5546 + 5547 + void* WKPreferencesSetAggressiveTileRetentionEnabled(void) { 5548 + if (verbose) puts("STUB: WKPreferencesSetAggressiveTileRetentionEnabled called"); 5549 + return NULL; 5550 + } 5551 + 5552 + void* WKPreferencesSetAllowMediaContentTypesRequiringHardwareSupportAsFallback(void) { 5553 + if (verbose) puts("STUB: WKPreferencesSetAllowMediaContentTypesRequiringHardwareSupportAsFallback called"); 5554 + return NULL; 5555 + } 5556 + 5557 + void* WKPreferencesSetAllowsAirPlayForMediaPlayback(void) { 5558 + if (verbose) puts("STUB: WKPreferencesSetAllowsAirPlayForMediaPlayback called"); 5559 + return NULL; 5560 + } 5561 + 5562 + void* WKPreferencesSetAllowsPictureInPictureMediaPlayback(void) { 5563 + if (verbose) puts("STUB: WKPreferencesSetAllowsPictureInPictureMediaPlayback called"); 5564 + return NULL; 5565 + } 5566 + 5567 + void* WKPreferencesSetAnimatedImageAsyncDecodingEnabled(void) { 5568 + if (verbose) puts("STUB: WKPreferencesSetAnimatedImageAsyncDecodingEnabled called"); 5569 + return NULL; 5570 + } 5571 + 5572 + void* WKPreferencesSetAntialiasedFontDilationEnabled(void) { 5573 + if (verbose) puts("STUB: WKPreferencesSetAntialiasedFontDilationEnabled called"); 5574 + return NULL; 5575 + } 5576 + 5577 + void* WKPreferencesSetApplePayCapabilityDisclosureAllowed(void) { 5578 + if (verbose) puts("STUB: WKPreferencesSetApplePayCapabilityDisclosureAllowed called"); 5579 + return NULL; 5580 + } 5581 + 5582 + void* WKPreferencesSetApplePayEnabled(void) { 5583 + if (verbose) puts("STUB: WKPreferencesSetApplePayEnabled called"); 5584 + return NULL; 5585 + } 5586 + 5587 + void* WKPreferencesSetApplicationChromeModeEnabled(void) { 5588 + if (verbose) puts("STUB: WKPreferencesSetApplicationChromeModeEnabled called"); 5589 + return NULL; 5590 + } 5591 + 5592 + void* WKPreferencesSetArtificialPluginInitializationDelayEnabled(void) { 5593 + if (verbose) puts("STUB: WKPreferencesSetArtificialPluginInitializationDelayEnabled called"); 5594 + return NULL; 5595 + } 5596 + 5597 + void* WKPreferencesSetAsynchronousPluginInitializationEnabled(void) { 5598 + if (verbose) puts("STUB: WKPreferencesSetAsynchronousPluginInitializationEnabled called"); 5599 + return NULL; 5600 + } 5601 + 5602 + void* WKPreferencesSetAsynchronousPluginInitializationEnabledForAllPlugins(void) { 5603 + if (verbose) puts("STUB: WKPreferencesSetAsynchronousPluginInitializationEnabledForAllPlugins called"); 5604 + return NULL; 5605 + } 5606 + 5607 + void* WKPreferencesSetAsynchronousSpellCheckingEnabled(void) { 5608 + if (verbose) puts("STUB: WKPreferencesSetAsynchronousSpellCheckingEnabled called"); 5609 + return NULL; 5610 + } 5611 + 5612 + void* WKPreferencesSetAttachmentElementEnabled(void) { 5613 + if (verbose) puts("STUB: WKPreferencesSetAttachmentElementEnabled called"); 5614 + return NULL; 5615 + } 5616 + 5617 + void* WKPreferencesSetAudioPlaybackRequiresUserGesture(void) { 5618 + if (verbose) puts("STUB: WKPreferencesSetAudioPlaybackRequiresUserGesture called"); 5619 + return NULL; 5620 + } 5621 + 5622 + void* WKPreferencesSetAuthorAndUserStylesEnabled(void) { 5623 + if (verbose) puts("STUB: WKPreferencesSetAuthorAndUserStylesEnabled called"); 5624 + return NULL; 5625 + } 5626 + 5627 + void* WKPreferencesSetAutostartOriginPlugInSnapshottingEnabled(void) { 5628 + if (verbose) puts("STUB: WKPreferencesSetAutostartOriginPlugInSnapshottingEnabled called"); 5629 + return NULL; 5630 + } 5631 + 5632 + void* WKPreferencesSetBackspaceKeyNavigationEnabled(void) { 5633 + if (verbose) puts("STUB: WKPreferencesSetBackspaceKeyNavigationEnabled called"); 5634 + return NULL; 5635 + } 5636 + 5637 + void* WKPreferencesSetBeaconAPIEnabled(void) { 5638 + if (verbose) puts("STUB: WKPreferencesSetBeaconAPIEnabled called"); 5639 + return NULL; 5640 + } 5641 + 5642 + void* WKPreferencesSetCSSAnimationTriggersEnabled(void) { 5643 + if (verbose) puts("STUB: WKPreferencesSetCSSAnimationTriggersEnabled called"); 5644 + return NULL; 5645 + } 5646 + 5647 + void* WKPreferencesSetCanvasUsesAcceleratedDrawing(void) { 5648 + if (verbose) puts("STUB: WKPreferencesSetCanvasUsesAcceleratedDrawing called"); 5649 + return NULL; 5650 + } 5651 + 5652 + void* WKPreferencesSetCaretBrowsingEnabled(void) { 5653 + if (verbose) puts("STUB: WKPreferencesSetCaretBrowsingEnabled called"); 5654 + return NULL; 5655 + } 5656 + 5657 + void* WKPreferencesSetCompositingBordersVisible(void) { 5658 + if (verbose) puts("STUB: WKPreferencesSetCompositingBordersVisible called"); 5659 + return NULL; 5660 + } 5661 + 5662 + void* WKPreferencesSetCompositingRepaintCountersVisible(void) { 5663 + if (verbose) puts("STUB: WKPreferencesSetCompositingRepaintCountersVisible called"); 5664 + return NULL; 5665 + } 5666 + 5667 + void* WKPreferencesSetCookieEnabled(void) { 5668 + if (verbose) puts("STUB: WKPreferencesSetCookieEnabled called"); 5669 + return NULL; 5670 + } 5671 + 5672 + void* WKPreferencesSetCursiveFontFamily(void) { 5673 + if (verbose) puts("STUB: WKPreferencesSetCursiveFontFamily called"); 5674 + return NULL; 5675 + } 5676 + 5677 + void* WKPreferencesSetCustomPasteboardDataEnabled(void) { 5678 + if (verbose) puts("STUB: WKPreferencesSetCustomPasteboardDataEnabled called"); 5679 + return NULL; 5680 + } 5681 + 5682 + void* WKPreferencesSetDNSPrefetchingEnabled(void) { 5683 + if (verbose) puts("STUB: WKPreferencesSetDNSPrefetchingEnabled called"); 5684 + return NULL; 5685 + } 5686 + 5687 + void* WKPreferencesSetDOMPasteAllowed(void) { 5688 + if (verbose) puts("STUB: WKPreferencesSetDOMPasteAllowed called"); 5689 + return NULL; 5690 + } 5691 + 5692 + void* WKPreferencesSetDOMTimersThrottlingEnabled(void) { 5693 + if (verbose) puts("STUB: WKPreferencesSetDOMTimersThrottlingEnabled called"); 5694 + return NULL; 5695 + } 5696 + 5697 + void* WKPreferencesSetDataTransferItemsEnabled(void) { 5698 + if (verbose) puts("STUB: WKPreferencesSetDataTransferItemsEnabled called"); 5699 + return NULL; 5700 + } 5701 + 5702 + void* WKPreferencesSetDatabasesEnabled(void) { 5703 + if (verbose) puts("STUB: WKPreferencesSetDatabasesEnabled called"); 5704 + return NULL; 5705 + } 5706 + 5707 + void* WKPreferencesSetDefaultFixedFontSize(void) { 5708 + if (verbose) puts("STUB: WKPreferencesSetDefaultFixedFontSize called"); 5709 + return NULL; 5710 + } 5711 + 5712 + void* WKPreferencesSetDefaultFontSize(void) { 5713 + if (verbose) puts("STUB: WKPreferencesSetDefaultFontSize called"); 5714 + return NULL; 5715 + } 5716 + 5717 + void* WKPreferencesSetDefaultTextEncodingName(void) { 5718 + if (verbose) puts("STUB: WKPreferencesSetDefaultTextEncodingName called"); 5719 + return NULL; 5720 + } 5721 + 5722 + void* WKPreferencesSetDeferredCSSParserEnabled(void) { 5723 + if (verbose) puts("STUB: WKPreferencesSetDeferredCSSParserEnabled called"); 5724 + return NULL; 5725 + } 5726 + 5727 + void* WKPreferencesSetDeveloperExtrasEnabled(void) { 5728 + if (verbose) puts("STUB: WKPreferencesSetDeveloperExtrasEnabled called"); 5729 + return NULL; 5730 + } 5731 + 5732 + void* WKPreferencesSetDiagnosticLoggingEnabled(void) { 5733 + if (verbose) puts("STUB: WKPreferencesSetDiagnosticLoggingEnabled called"); 5734 + return NULL; 5735 + } 5736 + 5737 + void* WKPreferencesSetDirectoryUploadEnabled(void) { 5738 + if (verbose) puts("STUB: WKPreferencesSetDirectoryUploadEnabled called"); 5739 + return NULL; 5740 + } 5741 + 5742 + void* WKPreferencesSetDisplayContentsEnabled(void) { 5743 + if (verbose) puts("STUB: WKPreferencesSetDisplayContentsEnabled called"); 5744 + return NULL; 5745 + } 5746 + 5747 + void* WKPreferencesSetDownloadAttributeEnabled(void) { 5748 + if (verbose) puts("STUB: WKPreferencesSetDownloadAttributeEnabled called"); 5749 + return NULL; 5750 + } 5751 + 5752 + void* WKPreferencesSetEditableLinkBehavior(void) { 5753 + if (verbose) puts("STUB: WKPreferencesSetEditableLinkBehavior called"); 5754 + return NULL; 5755 + } 5756 + 5757 + void* WKPreferencesSetEnableInheritURIQueryComponent(void) { 5758 + if (verbose) puts("STUB: WKPreferencesSetEnableInheritURIQueryComponent called"); 5759 + return NULL; 5760 + } 5761 + 5762 + void* WKPreferencesSetEncodingDetectorEnabled(void) { 5763 + if (verbose) puts("STUB: WKPreferencesSetEncodingDetectorEnabled called"); 5764 + return NULL; 5765 + } 5766 + 5767 + void* WKPreferencesSetEnumeratingAllNetworkInterfacesEnabled(void) { 5768 + if (verbose) puts("STUB: WKPreferencesSetEnumeratingAllNetworkInterfacesEnabled called"); 5769 + return NULL; 5770 + } 5771 + 5772 + void* WKPreferencesSetFTPDirectoryTemplatePath(void) { 5773 + if (verbose) puts("STUB: WKPreferencesSetFTPDirectoryTemplatePath called"); 5774 + return NULL; 5775 + } 5776 + 5777 + void* WKPreferencesSetFantasyFontFamily(void) { 5778 + if (verbose) puts("STUB: WKPreferencesSetFantasyFontFamily called"); 5779 + return NULL; 5780 + } 5781 + 5782 + void* WKPreferencesSetFetchAPIEnabled(void) { 5783 + if (verbose) puts("STUB: WKPreferencesSetFetchAPIEnabled called"); 5784 + return NULL; 5785 + } 5786 + 5787 + void* WKPreferencesSetFetchAPIKeepAliveEnabled(void) { 5788 + if (verbose) puts("STUB: WKPreferencesSetFetchAPIKeepAliveEnabled called"); 5789 + return NULL; 5790 + } 5791 + 5792 + void* WKPreferencesSetFileAccessFromFileURLsAllowed(void) { 5793 + if (verbose) puts("STUB: WKPreferencesSetFileAccessFromFileURLsAllowed called"); 5794 + return NULL; 5795 + } 5796 + 5797 + void* WKPreferencesSetFixedFontFamily(void) { 5798 + if (verbose) puts("STUB: WKPreferencesSetFixedFontFamily called"); 5799 + return NULL; 5800 + } 5801 + 5802 + void* WKPreferencesSetFontSmoothingLevel(void) { 5803 + if (verbose) puts("STUB: WKPreferencesSetFontSmoothingLevel called"); 5804 + return NULL; 5805 + } 5806 + 5807 + void* WKPreferencesSetForceFTPDirectoryListings(void) { 5808 + if (verbose) puts("STUB: WKPreferencesSetForceFTPDirectoryListings called"); 5809 + return NULL; 5810 + } 5811 + 5812 + void* WKPreferencesSetForceSoftwareWebGLRendering(void) { 5813 + if (verbose) puts("STUB: WKPreferencesSetForceSoftwareWebGLRendering called"); 5814 + return NULL; 5815 + } 5816 + 5817 + void* WKPreferencesSetFrameFlatteningEnabled(void) { 5818 + if (verbose) puts("STUB: WKPreferencesSetFrameFlatteningEnabled called"); 5819 + return NULL; 5820 + } 5821 + 5822 + void* WKPreferencesSetFullScreenEnabled(void) { 5823 + if (verbose) puts("STUB: WKPreferencesSetFullScreenEnabled called"); 5824 + return NULL; 5825 + } 5826 + 5827 + void* WKPreferencesSetGamepadsEnabled(void) { 5828 + if (verbose) puts("STUB: WKPreferencesSetGamepadsEnabled called"); 5829 + return NULL; 5830 + } 5831 + 5832 + void* WKPreferencesSetHTTPEquivEnabled(void) { 5833 + if (verbose) puts("STUB: WKPreferencesSetHTTPEquivEnabled called"); 5834 + return NULL; 5835 + } 5836 + 5837 + void* WKPreferencesSetHiddenPageCSSAnimationSuspensionEnabled(void) { 5838 + if (verbose) puts("STUB: WKPreferencesSetHiddenPageCSSAnimationSuspensionEnabled called"); 5839 + return NULL; 5840 + } 5841 + 5842 + void* WKPreferencesSetHiddenPageDOMTimerThrottlingAutoIncreases(void) { 5843 + if (verbose) puts("STUB: WKPreferencesSetHiddenPageDOMTimerThrottlingAutoIncreases called"); 5844 + return NULL; 5845 + } 5846 + 5847 + void* WKPreferencesSetHiddenPageDOMTimerThrottlingEnabled(void) { 5848 + if (verbose) puts("STUB: WKPreferencesSetHiddenPageDOMTimerThrottlingEnabled called"); 5849 + return NULL; 5850 + } 5851 + 5852 + void* WKPreferencesSetHixie76WebSocketProtocolEnabled(void) { 5853 + if (verbose) puts("STUB: WKPreferencesSetHixie76WebSocketProtocolEnabled called"); 5854 + return NULL; 5855 + } 5856 + 5857 + void* WKPreferencesSetHyperlinkAuditingEnabled(void) { 5858 + if (verbose) puts("STUB: WKPreferencesSetHyperlinkAuditingEnabled called"); 5859 + return NULL; 5860 + } 5861 + 5862 + void* WKPreferencesSetICECandidateFilteringEnabled(void) { 5863 + if (verbose) puts("STUB: WKPreferencesSetICECandidateFilteringEnabled called"); 5864 + return NULL; 5865 + } 5866 + 5867 + void* WKPreferencesSetIgnoreViewportScalingConstraints(void) { 5868 + if (verbose) puts("STUB: WKPreferencesSetIgnoreViewportScalingConstraints called"); 5869 + return NULL; 5870 + } 5871 + 5872 + void* WKPreferencesSetImageControlsEnabled(void) { 5873 + if (verbose) puts("STUB: WKPreferencesSetImageControlsEnabled called"); 5874 + return NULL; 5875 + } 5876 + 5877 + void* WKPreferencesSetInactiveMediaCaptureSteamRepromptIntervalInMinutes(void) { 5878 + if (verbose) puts("STUB: WKPreferencesSetInactiveMediaCaptureSteamRepromptIntervalInMinutes called"); 5879 + return NULL; 5880 + } 5881 + 5882 + void* WKPreferencesSetIncrementalRenderingSuppressionTimeout(void) { 5883 + if (verbose) puts("STUB: WKPreferencesSetIncrementalRenderingSuppressionTimeout called"); 5884 + return NULL; 5885 + } 5886 + 5887 + void* WKPreferencesSetInlineMediaPlaybackRequiresPlaysInlineAttribute(void) { 5888 + if (verbose) puts("STUB: WKPreferencesSetInlineMediaPlaybackRequiresPlaysInlineAttribute called"); 5889 + return NULL; 5890 + } 5891 + 5892 + void* WKPreferencesSetInspectorAdditionsEnabled(void) { 5893 + if (verbose) puts("STUB: WKPreferencesSetInspectorAdditionsEnabled called"); 5894 + return NULL; 5895 + } 5896 + 5897 + void* WKPreferencesSetInspectorUsesWebKitUserInterface(void) { 5898 + if (verbose) puts("STUB: WKPreferencesSetInspectorUsesWebKitUserInterface called"); 5899 + return NULL; 5900 + } 5901 + 5902 + void* WKPreferencesSetInteractiveFormValidationEnabled(void) { 5903 + if (verbose) puts("STUB: WKPreferencesSetInteractiveFormValidationEnabled called"); 5904 + return NULL; 5905 + } 5906 + 5907 + void* WKPreferencesSetIntersectionObserverEnabled(void) { 5908 + if (verbose) puts("STUB: WKPreferencesSetIntersectionObserverEnabled called"); 5909 + return NULL; 5910 + } 5911 + 5912 + void* WKPreferencesSetInvisibleMediaAutoplayPermitted(void) { 5913 + if (verbose) puts("STUB: WKPreferencesSetInvisibleMediaAutoplayPermitted called"); 5914 + return NULL; 5915 + } 5916 + 5917 + void* WKPreferencesSetIsSecureContextAttributeEnabled(void) { 5918 + if (verbose) puts("STUB: WKPreferencesSetIsSecureContextAttributeEnabled called"); 5919 + return NULL; 5920 + } 5921 + 5922 + void* WKPreferencesSetJavaEnabled(void) { 5923 + if (verbose) puts("STUB: WKPreferencesSetJavaEnabled called"); 5924 + return NULL; 5925 + } 5926 + 5927 + void* WKPreferencesSetJavaEnabledForLocalFiles(void) { 5928 + if (verbose) puts("STUB: WKPreferencesSetJavaEnabledForLocalFiles called"); 5929 + return NULL; 5930 + } 5931 + 5932 + void* WKPreferencesSetJavaScriptCanAccessClipboard(void) { 5933 + if (verbose) puts("STUB: WKPreferencesSetJavaScriptCanAccessClipboard called"); 5934 + return NULL; 5935 + } 5936 + 5937 + void* WKPreferencesSetJavaScriptCanOpenWindowsAutomatically(void) { 5938 + if (verbose) puts("STUB: WKPreferencesSetJavaScriptCanOpenWindowsAutomatically called"); 5939 + return NULL; 5940 + } 5941 + 5942 + void* WKPreferencesSetJavaScriptEnabled(void) { 5943 + if (verbose) puts("STUB: WKPreferencesSetJavaScriptEnabled called"); 5944 + return NULL; 5945 + } 5946 + 5947 + void* WKPreferencesSetJavaScriptMarkupEnabled(void) { 5948 + if (verbose) puts("STUB: WKPreferencesSetJavaScriptMarkupEnabled called"); 5949 + return NULL; 5950 + } 5951 + 5952 + void* WKPreferencesSetJavaScriptRuntimeFlags(void) { 5953 + if (verbose) puts("STUB: WKPreferencesSetJavaScriptRuntimeFlags called"); 5954 + return NULL; 5955 + } 5956 + 5957 + void* WKPreferencesSetLargeImageAsyncDecodingEnabled(void) { 5958 + if (verbose) puts("STUB: WKPreferencesSetLargeImageAsyncDecodingEnabled called"); 5959 + return NULL; 5960 + } 5961 + 5962 + void* WKPreferencesSetLegacyEncryptedMediaAPIEnabled(void) { 5963 + if (verbose) puts("STUB: WKPreferencesSetLegacyEncryptedMediaAPIEnabled called"); 5964 + return NULL; 5965 + } 5966 + 5967 + void* WKPreferencesSetLinkPreloadEnabled(void) { 5968 + if (verbose) puts("STUB: WKPreferencesSetLinkPreloadEnabled called"); 5969 + return NULL; 5970 + } 5971 + 5972 + void* WKPreferencesSetLoadsImagesAutomatically(void) { 5973 + if (verbose) puts("STUB: WKPreferencesSetLoadsImagesAutomatically called"); 5974 + return NULL; 5975 + } 5976 + 5977 + void* WKPreferencesSetLoadsSiteIconsIgnoringImageLoadingPreference(void) { 5978 + if (verbose) puts("STUB: WKPreferencesSetLoadsSiteIconsIgnoringImageLoadingPreference called"); 5979 + return NULL; 5980 + } 5981 + 5982 + void* WKPreferencesSetLocalFileContentSniffingEnabled(void) { 5983 + if (verbose) puts("STUB: WKPreferencesSetLocalFileContentSniffingEnabled called"); 5984 + return NULL; 5985 + } 5986 + 5987 + void* WKPreferencesSetLocalStorageEnabled(void) { 5988 + if (verbose) puts("STUB: WKPreferencesSetLocalStorageEnabled called"); 5989 + return NULL; 5990 + } 5991 + 5992 + void* WKPreferencesSetLogsPageMessagesToSystemConsoleEnabled(void) { 5993 + if (verbose) puts("STUB: WKPreferencesSetLogsPageMessagesToSystemConsoleEnabled called"); 5994 + return NULL; 5995 + } 5996 + 5997 + void* WKPreferencesSetLongMousePressEnabled(void) { 5998 + if (verbose) puts("STUB: WKPreferencesSetLongMousePressEnabled called"); 5999 + return NULL; 6000 + } 6001 + 6002 + void* WKPreferencesSetMainContentUserGestureOverrideEnabled(void) { 6003 + if (verbose) puts("STUB: WKPreferencesSetMainContentUserGestureOverrideEnabled called"); 6004 + return NULL; 6005 + } 6006 + 6007 + void* WKPreferencesSetMediaCapabilitiesEnabled(void) { 6008 + if (verbose) puts("STUB: WKPreferencesSetMediaCapabilitiesEnabled called"); 6009 + return NULL; 6010 + } 6011 + 6012 + void* WKPreferencesSetMediaCaptureRequiresSecureConnection(void) { 6013 + if (verbose) puts("STUB: WKPreferencesSetMediaCaptureRequiresSecureConnection called"); 6014 + return NULL; 6015 + } 6016 + 6017 + void* WKPreferencesSetMediaContentTypesRequiringHardwareSupport(void) { 6018 + if (verbose) puts("STUB: WKPreferencesSetMediaContentTypesRequiringHardwareSupport called"); 6019 + return NULL; 6020 + } 6021 + 6022 + void* WKPreferencesSetMediaControlsScaleWithPageZoom(void) { 6023 + if (verbose) puts("STUB: WKPreferencesSetMediaControlsScaleWithPageZoom called"); 6024 + return NULL; 6025 + } 6026 + 6027 + void* WKPreferencesSetMediaDevicesEnabled(void) { 6028 + if (verbose) puts("STUB: WKPreferencesSetMediaDevicesEnabled called"); 6029 + return NULL; 6030 + } 6031 + 6032 + void* WKPreferencesSetMediaPlaybackAllowsInline(void) { 6033 + if (verbose) puts("STUB: WKPreferencesSetMediaPlaybackAllowsInline called"); 6034 + return NULL; 6035 + } 6036 + 6037 + void* WKPreferencesSetMediaPlaybackRequiresUserGesture(void) { 6038 + if (verbose) puts("STUB: WKPreferencesSetMediaPlaybackRequiresUserGesture called"); 6039 + return NULL; 6040 + } 6041 + 6042 + void* WKPreferencesSetMediaPreloadingEnabled(void) { 6043 + if (verbose) puts("STUB: WKPreferencesSetMediaPreloadingEnabled called"); 6044 + return NULL; 6045 + } 6046 + 6047 + void* WKPreferencesSetMediaSourceEnabled(void) { 6048 + if (verbose) puts("STUB: WKPreferencesSetMediaSourceEnabled called"); 6049 + return NULL; 6050 + } 6051 + 6052 + void* WKPreferencesSetMediaStreamEnabled(void) { 6053 + if (verbose) puts("STUB: WKPreferencesSetMediaStreamEnabled called"); 6054 + return NULL; 6055 + } 6056 + 6057 + void* WKPreferencesSetMediaUserGestureInheritsFromDocument(void) { 6058 + if (verbose) puts("STUB: WKPreferencesSetMediaUserGestureInheritsFromDocument called"); 6059 + return NULL; 6060 + } 6061 + 6062 + void* WKPreferencesSetMenuItemElementEnabled(void) { 6063 + if (verbose) puts("STUB: WKPreferencesSetMenuItemElementEnabled called"); 6064 + return NULL; 6065 + } 6066 + 6067 + void* WKPreferencesSetMetaRefreshEnabled(void) { 6068 + if (verbose) puts("STUB: WKPreferencesSetMetaRefreshEnabled called"); 6069 + return NULL; 6070 + } 6071 + 6072 + void* WKPreferencesSetMinimumFontSize(void) { 6073 + if (verbose) puts("STUB: WKPreferencesSetMinimumFontSize called"); 6074 + return NULL; 6075 + } 6076 + 6077 + void* WKPreferencesSetMinimumZoomFontSize(void) { 6078 + if (verbose) puts("STUB: WKPreferencesSetMinimumZoomFontSize called"); 6079 + return NULL; 6080 + } 6081 + 6082 + void* WKPreferencesSetMockCaptureDevicesEnabled(void) { 6083 + if (verbose) puts("STUB: WKPreferencesSetMockCaptureDevicesEnabled called"); 6084 + return NULL; 6085 + } 6086 + 6087 + void* WKPreferencesSetMockScrollbarsEnabled(void) { 6088 + if (verbose) puts("STUB: WKPreferencesSetMockScrollbarsEnabled called"); 6089 + return NULL; 6090 + } 6091 + 6092 + void* WKPreferencesSetModernMediaControlsEnabled(void) { 6093 + if (verbose) puts("STUB: WKPreferencesSetModernMediaControlsEnabled called"); 6094 + return NULL; 6095 + } 6096 + 6097 + void* WKPreferencesSetNeedsSiteSpecificQuirks(void) { 6098 + if (verbose) puts("STUB: WKPreferencesSetNeedsSiteSpecificQuirks called"); 6099 + return NULL; 6100 + } 6101 + 6102 + void* WKPreferencesSetNeedsStorageAccessFromFileURLsQuirk(void) { 6103 + if (verbose) puts("STUB: WKPreferencesSetNeedsStorageAccessFromFileURLsQuirk called"); 6104 + return NULL; 6105 + } 6106 + 6107 + void* WKPreferencesSetNewBlockInsideInlineModelEnabled(void) { 6108 + if (verbose) puts("STUB: WKPreferencesSetNewBlockInsideInlineModelEnabled called"); 6109 + return NULL; 6110 + } 6111 + 6112 + void* WKPreferencesSetNotificationsEnabled(void) { 6113 + if (verbose) puts("STUB: WKPreferencesSetNotificationsEnabled called"); 6114 + return NULL; 6115 + } 6116 + 6117 + void* WKPreferencesSetOfflineWebApplicationCacheEnabled(void) { 6118 + if (verbose) puts("STUB: WKPreferencesSetOfflineWebApplicationCacheEnabled called"); 6119 + return NULL; 6120 + } 6121 + 6122 + void* WKPreferencesSetPDFPluginEnabled(void) { 6123 + if (verbose) puts("STUB: WKPreferencesSetPDFPluginEnabled called"); 6124 + return NULL; 6125 + } 6126 + 6127 + void* WKPreferencesSetPageCacheEnabled(void) { 6128 + if (verbose) puts("STUB: WKPreferencesSetPageCacheEnabled called"); 6129 + return NULL; 6130 + } 6131 + 6132 + void* WKPreferencesSetPageCacheSupportsPlugins(void) { 6133 + if (verbose) puts("STUB: WKPreferencesSetPageCacheSupportsPlugins called"); 6134 + return NULL; 6135 + } 6136 + 6137 + void* WKPreferencesSetPageVisibilityBasedProcessSuppressionEnabled(void) { 6138 + if (verbose) puts("STUB: WKPreferencesSetPageVisibilityBasedProcessSuppressionEnabled called"); 6139 + return NULL; 6140 + } 6141 + 6142 + void* WKPreferencesSetPaginateDuringLayoutEnabled(void) { 6143 + if (verbose) puts("STUB: WKPreferencesSetPaginateDuringLayoutEnabled called"); 6144 + return NULL; 6145 + } 6146 + 6147 + void* WKPreferencesSetPeerConnectionEnabled(void) { 6148 + if (verbose) puts("STUB: WKPreferencesSetPeerConnectionEnabled called"); 6149 + return NULL; 6150 + } 6151 + 6152 + void* WKPreferencesSetPictographFontFamily(void) { 6153 + if (verbose) puts("STUB: WKPreferencesSetPictographFontFamily called"); 6154 + return NULL; 6155 + } 6156 + 6157 + void* WKPreferencesSetPlugInSnapshottingEnabled(void) { 6158 + if (verbose) puts("STUB: WKPreferencesSetPlugInSnapshottingEnabled called"); 6159 + return NULL; 6160 + } 6161 + 6162 + void* WKPreferencesSetPluginsEnabled(void) { 6163 + if (verbose) puts("STUB: WKPreferencesSetPluginsEnabled called"); 6164 + return NULL; 6165 + } 6166 + 6167 + void* WKPreferencesSetPrimaryPlugInSnapshotDetectionEnabled(void) { 6168 + if (verbose) puts("STUB: WKPreferencesSetPrimaryPlugInSnapshotDetectionEnabled called"); 6169 + return NULL; 6170 + } 6171 + 6172 + void* WKPreferencesSetPrivateBrowsingEnabled(void) { 6173 + if (verbose) puts("STUB: WKPreferencesSetPrivateBrowsingEnabled called"); 6174 + return NULL; 6175 + } 6176 + 6177 + void* WKPreferencesSetQTKitEnabled(void) { 6178 + if (verbose) puts("STUB: WKPreferencesSetQTKitEnabled called"); 6179 + return NULL; 6180 + } 6181 + 6182 + void* WKPreferencesSetRequestAnimationFrameEnabled(void) { 6183 + if (verbose) puts("STUB: WKPreferencesSetRequestAnimationFrameEnabled called"); 6184 + return NULL; 6185 + } 6186 + 6187 + void* WKPreferencesSetResourceTimingEnabled(void) { 6188 + if (verbose) puts("STUB: WKPreferencesSetResourceTimingEnabled called"); 6189 + return NULL; 6190 + } 6191 + 6192 + void* WKPreferencesSetResourceUsageOverlayVisible(void) { 6193 + if (verbose) puts("STUB: WKPreferencesSetResourceUsageOverlayVisible called"); 6194 + return NULL; 6195 + } 6196 + 6197 + void* WKPreferencesSetSansSerifFontFamily(void) { 6198 + if (verbose) puts("STUB: WKPreferencesSetSansSerifFontFamily called"); 6199 + return NULL; 6200 + } 6201 + 6202 + void* WKPreferencesSetScrollingPerformanceLoggingEnabled(void) { 6203 + if (verbose) puts("STUB: WKPreferencesSetScrollingPerformanceLoggingEnabled called"); 6204 + return NULL; 6205 + } 6206 + 6207 + void* WKPreferencesSetSelectTrailingWhitespaceEnabled(void) { 6208 + if (verbose) puts("STUB: WKPreferencesSetSelectTrailingWhitespaceEnabled called"); 6209 + return NULL; 6210 + } 6211 + 6212 + void* WKPreferencesSetSelectionPaintingWithoutSelectionGapsEnabled(void) { 6213 + if (verbose) puts("STUB: WKPreferencesSetSelectionPaintingWithoutSelectionGapsEnabled called"); 6214 + return NULL; 6215 + } 6216 + 6217 + void* WKPreferencesSetSerifFontFamily(void) { 6218 + if (verbose) puts("STUB: WKPreferencesSetSerifFontFamily called"); 6219 + return NULL; 6220 + } 6221 + 6222 + void* WKPreferencesSetServiceControlsEnabled(void) { 6223 + if (verbose) puts("STUB: WKPreferencesSetServiceControlsEnabled called"); 6224 + return NULL; 6225 + } 6226 + 6227 + void* WKPreferencesSetShouldAllowUserInstalledFonts(void) { 6228 + if (verbose) puts("STUB: WKPreferencesSetShouldAllowUserInstalledFonts called"); 6229 + return NULL; 6230 + } 6231 + 6232 + void* WKPreferencesSetShouldConvertPositionStyleOnCopy(void) { 6233 + if (verbose) puts("STUB: WKPreferencesSetShouldConvertPositionStyleOnCopy called"); 6234 + return NULL; 6235 + } 6236 + 6237 + void* WKPreferencesSetShouldDisplayCaptions(void) { 6238 + if (verbose) puts("STUB: WKPreferencesSetShouldDisplayCaptions called"); 6239 + return NULL; 6240 + } 6241 + 6242 + void* WKPreferencesSetShouldDisplaySubtitles(void) { 6243 + if (verbose) puts("STUB: WKPreferencesSetShouldDisplaySubtitles called"); 6244 + return NULL; 6245 + } 6246 + 6247 + void* WKPreferencesSetShouldDisplayTextDescriptions(void) { 6248 + if (verbose) puts("STUB: WKPreferencesSetShouldDisplayTextDescriptions called"); 6249 + return NULL; 6250 + } 6251 + 6252 + void* WKPreferencesSetShouldPrintBackgrounds(void) { 6253 + if (verbose) puts("STUB: WKPreferencesSetShouldPrintBackgrounds called"); 6254 + return NULL; 6255 + } 6256 + 6257 + void* WKPreferencesSetShouldRespectImageOrientation(void) { 6258 + if (verbose) puts("STUB: WKPreferencesSetShouldRespectImageOrientation called"); 6259 + return NULL; 6260 + } 6261 + 6262 + void* WKPreferencesSetShouldSuppressKeyboardInputDuringProvisionalNavigation(void) { 6263 + if (verbose) puts("STUB: WKPreferencesSetShouldSuppressKeyboardInputDuringProvisionalNavigation called"); 6264 + return NULL; 6265 + } 6266 + 6267 + void* WKPreferencesSetShowsToolTipOverTruncatedText(void) { 6268 + if (verbose) puts("STUB: WKPreferencesSetShowsToolTipOverTruncatedText called"); 6269 + return NULL; 6270 + } 6271 + 6272 + void* WKPreferencesSetShowsURLsInToolTipsEnabled(void) { 6273 + if (verbose) puts("STUB: WKPreferencesSetShowsURLsInToolTipsEnabled called"); 6274 + return NULL; 6275 + } 6276 + 6277 + void* WKPreferencesSetSimpleLineLayoutDebugBordersEnabled(void) { 6278 + if (verbose) puts("STUB: WKPreferencesSetSimpleLineLayoutDebugBordersEnabled called"); 6279 + return NULL; 6280 + } 6281 + 6282 + void* WKPreferencesSetSimpleLineLayoutEnabled(void) { 6283 + if (verbose) puts("STUB: WKPreferencesSetSimpleLineLayoutEnabled called"); 6284 + return NULL; 6285 + } 6286 + 6287 + void* WKPreferencesSetSmartInsertDeleteEnabled(void) { 6288 + if (verbose) puts("STUB: WKPreferencesSetSmartInsertDeleteEnabled called"); 6289 + return NULL; 6290 + } 6291 + 6292 + void* WKPreferencesSetSnapshotAllPlugIns(void) { 6293 + if (verbose) puts("STUB: WKPreferencesSetSnapshotAllPlugIns called"); 6294 + return NULL; 6295 + } 6296 + 6297 + void* WKPreferencesSetSpatialNavigationEnabled(void) { 6298 + if (verbose) puts("STUB: WKPreferencesSetSpatialNavigationEnabled called"); 6299 + return NULL; 6300 + } 6301 + 6302 + void* WKPreferencesSetStandardFontFamily(void) { 6303 + if (verbose) puts("STUB: WKPreferencesSetStandardFontFamily called"); 6304 + return NULL; 6305 + } 6306 + 6307 + void* WKPreferencesSetStorageAccessAPIEnabled(void) { 6308 + if (verbose) puts("STUB: WKPreferencesSetStorageAccessAPIEnabled called"); 6309 + return NULL; 6310 + } 6311 + 6312 + void* WKPreferencesSetStorageBlockingPolicy(void) { 6313 + if (verbose) puts("STUB: WKPreferencesSetStorageBlockingPolicy called"); 6314 + return NULL; 6315 + } 6316 + 6317 + void* WKPreferencesSetSubpixelAntialiasedLayerTextEnabled(void) { 6318 + if (verbose) puts("STUB: WKPreferencesSetSubpixelAntialiasedLayerTextEnabled called"); 6319 + return NULL; 6320 + } 6321 + 6322 + void* WKPreferencesSetSubpixelCSSOMElementMetricsEnabled(void) { 6323 + if (verbose) puts("STUB: WKPreferencesSetSubpixelCSSOMElementMetricsEnabled called"); 6324 + return NULL; 6325 + } 6326 + 6327 + void* WKPreferencesSetSuppressesIncrementalRendering(void) { 6328 + if (verbose) puts("STUB: WKPreferencesSetSuppressesIncrementalRendering called"); 6329 + return NULL; 6330 + } 6331 + 6332 + void* WKPreferencesSetTabToLinksEnabled(void) { 6333 + if (verbose) puts("STUB: WKPreferencesSetTabToLinksEnabled called"); 6334 + return NULL; 6335 + } 6336 + 6337 + void* WKPreferencesSetTabsToLinks(void) { 6338 + if (verbose) puts("STUB: WKPreferencesSetTabsToLinks called"); 6339 + return NULL; 6340 + } 6341 + 6342 + void* WKPreferencesSetTelephoneNumberParsingEnabled(void) { 6343 + if (verbose) puts("STUB: WKPreferencesSetTelephoneNumberParsingEnabled called"); 6344 + return NULL; 6345 + } 6346 + 6347 + void* WKPreferencesSetTextAreasAreResizable(void) { 6348 + if (verbose) puts("STUB: WKPreferencesSetTextAreasAreResizable called"); 6349 + return NULL; 6350 + } 6351 + 6352 + void* WKPreferencesSetTextAutosizingEnabled(void) { 6353 + if (verbose) puts("STUB: WKPreferencesSetTextAutosizingEnabled called"); 6354 + return NULL; 6355 + } 6356 + 6357 + void* WKPreferencesSetThreadedScrollingEnabled(void) { 6358 + if (verbose) puts("STUB: WKPreferencesSetThreadedScrollingEnabled called"); 6359 + return NULL; 6360 + } 6361 + 6362 + void* WKPreferencesSetTiledScrollingIndicatorVisible(void) { 6363 + if (verbose) puts("STUB: WKPreferencesSetTiledScrollingIndicatorVisible called"); 6364 + return NULL; 6365 + } 6366 + 6367 + void* WKPreferencesSetUniversalAccessFromFileURLsAllowed(void) { 6368 + if (verbose) puts("STUB: WKPreferencesSetUniversalAccessFromFileURLsAllowed called"); 6369 + return NULL; 6370 + } 6371 + 6372 + void* WKPreferencesSetUseGiantTiles(void) { 6373 + if (verbose) puts("STUB: WKPreferencesSetUseGiantTiles called"); 6374 + return NULL; 6375 + } 6376 + 6377 + void* WKPreferencesSetUseLegacyTextAlignPositionedElementBehavior(void) { 6378 + if (verbose) puts("STUB: WKPreferencesSetUseLegacyTextAlignPositionedElementBehavior called"); 6379 + return NULL; 6380 + } 6381 + 6382 + void* WKPreferencesSetUserInterfaceDirectionPolicy(void) { 6383 + if (verbose) puts("STUB: WKPreferencesSetUserInterfaceDirectionPolicy called"); 6384 + return NULL; 6385 + } 6386 + 6387 + void* WKPreferencesSetUserTimingEnabled(void) { 6388 + if (verbose) puts("STUB: WKPreferencesSetUserTimingEnabled called"); 6389 + return NULL; 6390 + } 6391 + 6392 + void* WKPreferencesSetVideoPlaybackRequiresUserGesture(void) { 6393 + if (verbose) puts("STUB: WKPreferencesSetVideoPlaybackRequiresUserGesture called"); 6394 + return NULL; 6395 + } 6396 + 6397 + void* WKPreferencesSetViewGestureDebuggingEnabled(void) { 6398 + if (verbose) puts("STUB: WKPreferencesSetViewGestureDebuggingEnabled called"); 6399 + return NULL; 6400 + } 6401 + 6402 + void* WKPreferencesSetVisibleDebugOverlayRegions(void) { 6403 + if (verbose) puts("STUB: WKPreferencesSetVisibleDebugOverlayRegions called"); 6404 + return NULL; 6405 + } 6406 + 6407 + void* WKPreferencesSetWebAnimationsEnabled(void) { 6408 + if (verbose) puts("STUB: WKPreferencesSetWebAnimationsEnabled called"); 6409 + return NULL; 6410 + } 6411 + 6412 + void* WKPreferencesSetWebArchiveDebugModeEnabled(void) { 6413 + if (verbose) puts("STUB: WKPreferencesSetWebArchiveDebugModeEnabled called"); 6414 + return NULL; 6415 + } 6416 + 6417 + void* WKPreferencesSetWebAudioEnabled(void) { 6418 + if (verbose) puts("STUB: WKPreferencesSetWebAudioEnabled called"); 6419 + return NULL; 6420 + } 6421 + 6422 + void* WKPreferencesSetWebAuthenticationEnabled(void) { 6423 + if (verbose) puts("STUB: WKPreferencesSetWebAuthenticationEnabled called"); 6424 + return NULL; 6425 + } 6426 + 6427 + void* WKPreferencesSetWebGLEnabled(void) { 6428 + if (verbose) puts("STUB: WKPreferencesSetWebGLEnabled called"); 6429 + return NULL; 6430 + } 6431 + 6432 + void* WKPreferencesSetWebRTCLegacyAPIEnabled(void) { 6433 + if (verbose) puts("STUB: WKPreferencesSetWebRTCLegacyAPIEnabled called"); 6434 + return NULL; 6435 + } 6436 + 6437 + void* WKPreferencesSetWebSecurityEnabled(void) { 6438 + if (verbose) puts("STUB: WKPreferencesSetWebSecurityEnabled called"); 6439 + return NULL; 6440 + } 6441 + 6442 + void* WKPreferencesSetXSSAuditorEnabled(void) { 6443 + if (verbose) puts("STUB: WKPreferencesSetXSSAuditorEnabled called"); 6444 + return NULL; 6445 + } 6446 + 6447 + void* WKPreferencesUseLegacyTextAlignPositionedElementBehavior(void) { 6448 + if (verbose) puts("STUB: WKPreferencesUseLegacyTextAlignPositionedElementBehavior called"); 6449 + return NULL; 6450 + } 6451 + 6452 + void* WKProtectionSpaceCopyHost(void) { 6453 + if (verbose) puts("STUB: WKProtectionSpaceCopyHost called"); 6454 + return NULL; 6455 + } 6456 + 6457 + void* WKProtectionSpaceCopyNSURLProtectionSpace(void) { 6458 + if (verbose) puts("STUB: WKProtectionSpaceCopyNSURLProtectionSpace called"); 6459 + return NULL; 6460 + } 6461 + 6462 + void* WKProtectionSpaceCopyRealm(void) { 6463 + if (verbose) puts("STUB: WKProtectionSpaceCopyRealm called"); 6464 + return NULL; 6465 + } 6466 + 6467 + void* WKProtectionSpaceGetAuthenticationScheme(void) { 6468 + if (verbose) puts("STUB: WKProtectionSpaceGetAuthenticationScheme called"); 6469 + return NULL; 6470 + } 6471 + 6472 + void* WKProtectionSpaceGetIsProxy(void) { 6473 + if (verbose) puts("STUB: WKProtectionSpaceGetIsProxy called"); 6474 + return NULL; 6475 + } 6476 + 6477 + void* WKProtectionSpaceGetPort(void) { 6478 + if (verbose) puts("STUB: WKProtectionSpaceGetPort called"); 6479 + return NULL; 6480 + } 6481 + 6482 + void* WKProtectionSpaceGetReceivesCredentialSecurely(void) { 6483 + if (verbose) puts("STUB: WKProtectionSpaceGetReceivesCredentialSecurely called"); 6484 + return NULL; 6485 + } 6486 + 6487 + void* WKProtectionSpaceGetServerType(void) { 6488 + if (verbose) puts("STUB: WKProtectionSpaceGetServerType called"); 6489 + return NULL; 6490 + } 6491 + 6492 + void* WKProtectionSpaceGetTypeID(void) { 6493 + if (verbose) puts("STUB: WKProtectionSpaceGetTypeID called"); 6494 + return NULL; 6495 + } 6496 + 6497 + void* WKRectCreate(void) { 6498 + if (verbose) puts("STUB: WKRectCreate called"); 6499 + return NULL; 6500 + } 6501 + 6502 + void* WKRectGetTypeID(void) { 6503 + if (verbose) puts("STUB: WKRectGetTypeID called"); 6504 + return NULL; 6505 + } 6506 + 6507 + void* WKRectGetValue(void) { 6508 + if (verbose) puts("STUB: WKRectGetValue called"); 6509 + return NULL; 6510 + } 6511 + 6512 + void* WKRelease(void) { 6513 + if (verbose) puts("STUB: WKRelease called"); 6514 + return NULL; 6515 + } 6516 + 6517 + void* WKRenderLayerCopyElementID(void) { 6518 + if (verbose) puts("STUB: WKRenderLayerCopyElementID called"); 6519 + return NULL; 6520 + } 6521 + 6522 + void* WKRenderLayerCopyElementTagName(void) { 6523 + if (verbose) puts("STUB: WKRenderLayerCopyElementTagName called"); 6524 + return NULL; 6525 + } 6526 + 6527 + void* WKRenderLayerCopyRendererName(void) { 6528 + if (verbose) puts("STUB: WKRenderLayerCopyRendererName called"); 6529 + return NULL; 6530 + } 6531 + 6532 + void* WKRenderLayerGetAbsoluteBounds(void) { 6533 + if (verbose) puts("STUB: WKRenderLayerGetAbsoluteBounds called"); 6534 + return NULL; 6535 + } 6536 + 6537 + void* WKRenderLayerGetBackingStoreMemoryEstimate(void) { 6538 + if (verbose) puts("STUB: WKRenderLayerGetBackingStoreMemoryEstimate called"); 6539 + return NULL; 6540 + } 6541 + 6542 + void* WKRenderLayerGetCompositingLayerType(void) { 6543 + if (verbose) puts("STUB: WKRenderLayerGetCompositingLayerType called"); 6544 + return NULL; 6545 + } 6546 + 6547 + void* WKRenderLayerGetElementClassNames(void) { 6548 + if (verbose) puts("STUB: WKRenderLayerGetElementClassNames called"); 6549 + return NULL; 6550 + } 6551 + 6552 + void* WKRenderLayerGetFrameContentsLayer(void) { 6553 + if (verbose) puts("STUB: WKRenderLayerGetFrameContentsLayer called"); 6554 + return NULL; 6555 + } 6556 + 6557 + void* WKRenderLayerGetNegativeZOrderList(void) { 6558 + if (verbose) puts("STUB: WKRenderLayerGetNegativeZOrderList called"); 6559 + return NULL; 6560 + } 6561 + 6562 + void* WKRenderLayerGetNormalFlowList(void) { 6563 + if (verbose) puts("STUB: WKRenderLayerGetNormalFlowList called"); 6564 + return NULL; 6565 + } 6566 + 6567 + void* WKRenderLayerGetPositiveZOrderList(void) { 6568 + if (verbose) puts("STUB: WKRenderLayerGetPositiveZOrderList called"); 6569 + return NULL; 6570 + } 6571 + 6572 + void* WKRenderLayerGetRenderer(void) { 6573 + if (verbose) puts("STUB: WKRenderLayerGetRenderer called"); 6574 + return NULL; 6575 + } 6576 + 6577 + void* WKRenderLayerGetTypeID(void) { 6578 + if (verbose) puts("STUB: WKRenderLayerGetTypeID called"); 6579 + return NULL; 6580 + } 6581 + 6582 + void* WKRenderLayerIsClipped(void) { 6583 + if (verbose) puts("STUB: WKRenderLayerIsClipped called"); 6584 + return NULL; 6585 + } 6586 + 6587 + void* WKRenderLayerIsClipping(void) { 6588 + if (verbose) puts("STUB: WKRenderLayerIsClipping called"); 6589 + return NULL; 6590 + } 6591 + 6592 + void* WKRenderLayerIsReflection(void) { 6593 + if (verbose) puts("STUB: WKRenderLayerIsReflection called"); 6594 + return NULL; 6595 + } 6596 + 6597 + void* WKRenderObjectCopyElementID(void) { 6598 + if (verbose) puts("STUB: WKRenderObjectCopyElementID called"); 6599 + return NULL; 6600 + } 6601 + 6602 + void* WKRenderObjectCopyElementTagName(void) { 6603 + if (verbose) puts("STUB: WKRenderObjectCopyElementTagName called"); 6604 + return NULL; 6605 + } 6606 + 6607 + void* WKRenderObjectCopyName(void) { 6608 + if (verbose) puts("STUB: WKRenderObjectCopyName called"); 6609 + return NULL; 6610 + } 6611 + 6612 + void* WKRenderObjectCopyTextSnippet(void) { 6613 + if (verbose) puts("STUB: WKRenderObjectCopyTextSnippet called"); 6614 + return NULL; 6615 + } 6616 + 6617 + void* WKRenderObjectGetAbsolutePosition(void) { 6618 + if (verbose) puts("STUB: WKRenderObjectGetAbsolutePosition called"); 6619 + return NULL; 6620 + } 6621 + 6622 + void* WKRenderObjectGetChildren(void) { 6623 + if (verbose) puts("STUB: WKRenderObjectGetChildren called"); 6624 + return NULL; 6625 + } 6626 + 6627 + void* WKRenderObjectGetElementClassNames(void) { 6628 + if (verbose) puts("STUB: WKRenderObjectGetElementClassNames called"); 6629 + return NULL; 6630 + } 6631 + 6632 + void* WKRenderObjectGetFrameRect(void) { 6633 + if (verbose) puts("STUB: WKRenderObjectGetFrameRect called"); 6634 + return NULL; 6635 + } 6636 + 6637 + void* WKRenderObjectGetTextLength(void) { 6638 + if (verbose) puts("STUB: WKRenderObjectGetTextLength called"); 6639 + return NULL; 6640 + } 6641 + 6642 + void* WKRenderObjectGetTypeID(void) { 6643 + if (verbose) puts("STUB: WKRenderObjectGetTypeID called"); 6644 + return NULL; 6645 + } 6646 + 6647 + void* WKResourceCacheManagerClearCacheForAllOrigins(void) { 6648 + if (verbose) puts("STUB: WKResourceCacheManagerClearCacheForAllOrigins called"); 6649 + return NULL; 6650 + } 6651 + 6652 + void* WKResourceCacheManagerClearCacheForOrigin(void) { 6653 + if (verbose) puts("STUB: WKResourceCacheManagerClearCacheForOrigin called"); 6654 + return NULL; 6655 + } 6656 + 6657 + void* WKResourceCacheManagerGetCacheOrigins(void) { 6658 + if (verbose) puts("STUB: WKResourceCacheManagerGetCacheOrigins called"); 6659 + return NULL; 6660 + } 6661 + 6662 + void* WKResourceCacheManagerGetTypeID(void) { 6663 + if (verbose) puts("STUB: WKResourceCacheManagerGetTypeID called"); 6664 + return NULL; 6665 + } 6666 + 6667 + void* WKRetain(void) { 6668 + if (verbose) puts("STUB: WKRetain called"); 6669 + return NULL; 6670 + } 6671 + 6672 + void* WKSecurityOriginCopyDatabaseIdentifier(void) { 6673 + if (verbose) puts("STUB: WKSecurityOriginCopyDatabaseIdentifier called"); 6674 + return NULL; 6675 + } 6676 + 6677 + void* WKSecurityOriginCopyHost(void) { 6678 + if (verbose) puts("STUB: WKSecurityOriginCopyHost called"); 6679 + return NULL; 6680 + } 6681 + 6682 + void* WKSecurityOriginCopyProtocol(void) { 6683 + if (verbose) puts("STUB: WKSecurityOriginCopyProtocol called"); 6684 + return NULL; 6685 + } 6686 + 6687 + void* WKSecurityOriginCopyToString(void) { 6688 + if (verbose) puts("STUB: WKSecurityOriginCopyToString called"); 6689 + return NULL; 6690 + } 6691 + 6692 + void* WKSecurityOriginCreate(void) { 6693 + if (verbose) puts("STUB: WKSecurityOriginCreate called"); 6694 + return NULL; 6695 + } 6696 + 6697 + void* WKSecurityOriginCreateFromDatabaseIdentifier(void) { 6698 + if (verbose) puts("STUB: WKSecurityOriginCreateFromDatabaseIdentifier called"); 6699 + return NULL; 6700 + } 6701 + 6702 + void* WKSecurityOriginCreateFromString(void) { 6703 + if (verbose) puts("STUB: WKSecurityOriginCreateFromString called"); 6704 + return NULL; 6705 + } 6706 + 6707 + void* WKSecurityOriginGetPort(void) { 6708 + if (verbose) puts("STUB: WKSecurityOriginGetPort called"); 6709 + return NULL; 6710 + } 6711 + 6712 + void* WKSecurityOriginGetTypeID(void) { 6713 + if (verbose) puts("STUB: WKSecurityOriginGetTypeID called"); 6714 + return NULL; 6715 + } 6716 + 6717 + void* WKSerializedScriptValueCreate(void) { 6718 + if (verbose) puts("STUB: WKSerializedScriptValueCreate called"); 6719 + return NULL; 6720 + } 6721 + 6722 + void* WKSerializedScriptValueDeserialize(void) { 6723 + if (verbose) puts("STUB: WKSerializedScriptValueDeserialize called"); 6724 + return NULL; 6725 + } 6726 + 6727 + void* WKSerializedScriptValueGetTypeID(void) { 6728 + if (verbose) puts("STUB: WKSerializedScriptValueGetTypeID called"); 6729 + return NULL; 6730 + } 6731 + 6732 + void* WKSessionStateCopyData(void) { 6733 + if (verbose) puts("STUB: WKSessionStateCopyData called"); 6734 + return NULL; 6735 + } 6736 + 6737 + void* WKSessionStateCreateFromData(void) { 6738 + if (verbose) puts("STUB: WKSessionStateCreateFromData called"); 6739 + return NULL; 6740 + } 6741 + 6742 + void* WKSessionStateGetTypeID(void) { 6743 + if (verbose) puts("STUB: WKSessionStateGetTypeID called"); 6744 + return NULL; 6745 + } 6746 + 6747 + void* WKSizeCreate(void) { 6748 + if (verbose) puts("STUB: WKSizeCreate called"); 6749 + return NULL; 6750 + } 6751 + 6752 + void* WKSizeGetTypeID(void) { 6753 + if (verbose) puts("STUB: WKSizeGetTypeID called"); 6754 + return NULL; 6755 + } 6756 + 6757 + void* WKSizeGetValue(void) { 6758 + if (verbose) puts("STUB: WKSizeGetValue called"); 6759 + return NULL; 6760 + } 6761 + 6762 + void* WKStringCopyCFString(void) { 6763 + if (verbose) puts("STUB: WKStringCopyCFString called"); 6764 + return NULL; 6765 + } 6766 + 6767 + void* WKStringCopyJSString(void) { 6768 + if (verbose) puts("STUB: WKStringCopyJSString called"); 6769 + return NULL; 6770 + } 6771 + 6772 + void* WKStringCreateWithCFString(void) { 6773 + if (verbose) puts("STUB: WKStringCreateWithCFString called"); 6774 + return NULL; 6775 + } 6776 + 6777 + void* WKStringCreateWithJSString(void) { 6778 + if (verbose) puts("STUB: WKStringCreateWithJSString called"); 6779 + return NULL; 6780 + } 6781 + 6782 + void* WKStringCreateWithUTF8CString(void) { 6783 + if (verbose) puts("STUB: WKStringCreateWithUTF8CString called"); 6784 + return NULL; 6785 + } 6786 + 6787 + void* WKStringGetCharacters(void) { 6788 + if (verbose) puts("STUB: WKStringGetCharacters called"); 6789 + return NULL; 6790 + } 6791 + 6792 + void* WKStringGetLength(void) { 6793 + if (verbose) puts("STUB: WKStringGetLength called"); 6794 + return NULL; 6795 + } 6796 + 6797 + void* WKStringGetMaximumUTF8CStringSize(void) { 6798 + if (verbose) puts("STUB: WKStringGetMaximumUTF8CStringSize called"); 6799 + return NULL; 6800 + } 6801 + 6802 + void* WKStringGetTypeID(void) { 6803 + if (verbose) puts("STUB: WKStringGetTypeID called"); 6804 + return NULL; 6805 + } 6806 + 6807 + void* WKStringGetUTF8CString(void) { 6808 + if (verbose) puts("STUB: WKStringGetUTF8CString called"); 6809 + return NULL; 6810 + } 6811 + 6812 + void* WKStringGetUTF8CStringNonStrict(void) { 6813 + if (verbose) puts("STUB: WKStringGetUTF8CStringNonStrict called"); 6814 + return NULL; 6815 + } 6816 + 6817 + void* WKStringIsEmpty(void) { 6818 + if (verbose) puts("STUB: WKStringIsEmpty called"); 6819 + return NULL; 6820 + } 6821 + 6822 + void* WKStringIsEqual(void) { 6823 + if (verbose) puts("STUB: WKStringIsEqual called"); 6824 + return NULL; 6825 + } 6826 + 6827 + void* WKStringIsEqualToUTF8CString(void) { 6828 + if (verbose) puts("STUB: WKStringIsEqualToUTF8CString called"); 6829 + return NULL; 6830 + } 6831 + 6832 + void* WKStringIsEqualToUTF8CStringIgnoringCase(void) { 6833 + if (verbose) puts("STUB: WKStringIsEqualToUTF8CStringIgnoringCase called"); 6834 + return NULL; 6835 + } 6836 + 6837 + void* WKTextCheckerSetTestingMode(void) { 6838 + if (verbose) puts("STUB: WKTextCheckerSetTestingMode called"); 6839 + return NULL; 6840 + } 6841 + 6842 + void* WKUInt64Create(void) { 6843 + if (verbose) puts("STUB: WKUInt64Create called"); 6844 + return NULL; 6845 + } 6846 + 6847 + void* WKUInt64GetTypeID(void) { 6848 + if (verbose) puts("STUB: WKUInt64GetTypeID called"); 6849 + return NULL; 6850 + } 6851 + 6852 + void* WKUInt64GetValue(void) { 6853 + if (verbose) puts("STUB: WKUInt64GetValue called"); 6854 + return NULL; 6855 + } 6856 + 6857 + void* WKURLCopyCFURL(void) { 6858 + if (verbose) puts("STUB: WKURLCopyCFURL called"); 6859 + return NULL; 6860 + } 6861 + 6862 + void* WKURLCopyHostName(void) { 6863 + if (verbose) puts("STUB: WKURLCopyHostName called"); 6864 + return NULL; 6865 + } 6866 + 6867 + void* WKURLCopyLastPathComponent(void) { 6868 + if (verbose) puts("STUB: WKURLCopyLastPathComponent called"); 6869 + return NULL; 6870 + } 6871 + 6872 + void* WKURLCopyPath(void) { 6873 + if (verbose) puts("STUB: WKURLCopyPath called"); 6874 + return NULL; 6875 + } 6876 + 6877 + void* WKURLCopyScheme(void) { 6878 + if (verbose) puts("STUB: WKURLCopyScheme called"); 6879 + return NULL; 6880 + } 6881 + 6882 + void* WKURLCopyString(void) { 6883 + if (verbose) puts("STUB: WKURLCopyString called"); 6884 + return NULL; 6885 + } 6886 + 6887 + void* WKURLCreateWithBaseURL(void) { 6888 + if (verbose) puts("STUB: WKURLCreateWithBaseURL called"); 6889 + return NULL; 6890 + } 6891 + 6892 + void* WKURLCreateWithCFURL(void) { 6893 + if (verbose) puts("STUB: WKURLCreateWithCFURL called"); 6894 + return NULL; 6895 + } 6896 + 6897 + void* WKURLCreateWithUTF8CString(void) { 6898 + if (verbose) puts("STUB: WKURLCreateWithUTF8CString called"); 6899 + return NULL; 6900 + } 6901 + 6902 + void* WKURLGetTypeID(void) { 6903 + if (verbose) puts("STUB: WKURLGetTypeID called"); 6904 + return NULL; 6905 + } 6906 + 6907 + void* WKURLIsEqual(void) { 6908 + if (verbose) puts("STUB: WKURLIsEqual called"); 6909 + return NULL; 6910 + } 6911 + 6912 + void* WKURLRequestCopyFirstPartyForCookies(void) { 6913 + if (verbose) puts("STUB: WKURLRequestCopyFirstPartyForCookies called"); 6914 + return NULL; 6915 + } 6916 + 6917 + void* WKURLRequestCopyHTTPMethod(void) { 6918 + if (verbose) puts("STUB: WKURLRequestCopyHTTPMethod called"); 6919 + return NULL; 6920 + } 6921 + 6922 + void* WKURLRequestCopyNSURLRequest(void) { 6923 + if (verbose) puts("STUB: WKURLRequestCopyNSURLRequest called"); 6924 + return NULL; 6925 + } 6926 + 6927 + void* WKURLRequestCopySettingHTTPBody(void) { 6928 + if (verbose) puts("STUB: WKURLRequestCopySettingHTTPBody called"); 6929 + return NULL; 6930 + } 6931 + 6932 + void* WKURLRequestCopyURL(void) { 6933 + if (verbose) puts("STUB: WKURLRequestCopyURL called"); 6934 + return NULL; 6935 + } 6936 + 6937 + void* WKURLRequestCreateWithNSURLRequest(void) { 6938 + if (verbose) puts("STUB: WKURLRequestCreateWithNSURLRequest called"); 6939 + return NULL; 6940 + } 6941 + 6942 + void* WKURLRequestCreateWithWKURL(void) { 6943 + if (verbose) puts("STUB: WKURLRequestCreateWithWKURL called"); 6944 + return NULL; 6945 + } 6946 + 6947 + void* WKURLRequestGetTypeID(void) { 6948 + if (verbose) puts("STUB: WKURLRequestGetTypeID called"); 6949 + return NULL; 6950 + } 6951 + 6952 + void* WKURLRequestSetDefaultTimeoutInterval(void) { 6953 + if (verbose) puts("STUB: WKURLRequestSetDefaultTimeoutInterval called"); 6954 + return NULL; 6955 + } 6956 + 6957 + void* WKURLResponseCopyMIMEType(void) { 6958 + if (verbose) puts("STUB: WKURLResponseCopyMIMEType called"); 6959 + return NULL; 6960 + } 6961 + 6962 + void* WKURLResponseCopyNSURLResponse(void) { 6963 + if (verbose) puts("STUB: WKURLResponseCopyNSURLResponse called"); 6964 + return NULL; 6965 + } 6966 + 6967 + void* WKURLResponseCopySuggestedFilename(void) { 6968 + if (verbose) puts("STUB: WKURLResponseCopySuggestedFilename called"); 6969 + return NULL; 6970 + } 6971 + 6972 + void* WKURLResponseCopyURL(void) { 6973 + if (verbose) puts("STUB: WKURLResponseCopyURL called"); 6974 + return NULL; 6975 + } 6976 + 6977 + void* WKURLResponseCreateWithNSURLResponse(void) { 6978 + if (verbose) puts("STUB: WKURLResponseCreateWithNSURLResponse called"); 6979 + return NULL; 6980 + } 6981 + 6982 + void* WKURLResponseGetExpectedContentLength(void) { 6983 + if (verbose) puts("STUB: WKURLResponseGetExpectedContentLength called"); 6984 + return NULL; 6985 + } 6986 + 6987 + void* WKURLResponseGetTypeID(void) { 6988 + if (verbose) puts("STUB: WKURLResponseGetTypeID called"); 6989 + return NULL; 6990 + } 6991 + 6992 + void* WKURLResponseHTTPStatusCode(void) { 6993 + if (verbose) puts("STUB: WKURLResponseHTTPStatusCode called"); 6994 + return NULL; 6995 + } 6996 + 6997 + void* WKURLResponseIsAttachment(void) { 6998 + if (verbose) puts("STUB: WKURLResponseIsAttachment called"); 6999 + return NULL; 7000 + } 7001 + 7002 + void* WKUserContentControllerAddUserContentFilter(void) { 7003 + if (verbose) puts("STUB: WKUserContentControllerAddUserContentFilter called"); 7004 + return NULL; 7005 + } 7006 + 7007 + void* WKUserContentControllerAddUserScript(void) { 7008 + if (verbose) puts("STUB: WKUserContentControllerAddUserScript called"); 7009 + return NULL; 7010 + } 7011 + 7012 + void* WKUserContentControllerCopyUserScripts(void) { 7013 + if (verbose) puts("STUB: WKUserContentControllerCopyUserScripts called"); 7014 + return NULL; 7015 + } 7016 + 7017 + void* WKUserContentControllerCreate(void) { 7018 + if (verbose) puts("STUB: WKUserContentControllerCreate called"); 7019 + return NULL; 7020 + } 7021 + 7022 + void* WKUserContentControllerGetTypeID(void) { 7023 + if (verbose) puts("STUB: WKUserContentControllerGetTypeID called"); 7024 + return NULL; 7025 + } 7026 + 7027 + void* WKUserContentControllerRemoveAllUserContentFilters(void) { 7028 + if (verbose) puts("STUB: WKUserContentControllerRemoveAllUserContentFilters called"); 7029 + return NULL; 7030 + } 7031 + 7032 + void* WKUserContentControllerRemoveAllUserScripts(void) { 7033 + if (verbose) puts("STUB: WKUserContentControllerRemoveAllUserScripts called"); 7034 + return NULL; 7035 + } 7036 + 7037 + void* WKUserContentExtensionStoreGetTypeID(void) { 7038 + if (verbose) puts("STUB: WKUserContentExtensionStoreGetTypeID called"); 7039 + return NULL; 7040 + } 7041 + 7042 + void* WKUserContentURLPatternCopyHost(void) { 7043 + if (verbose) puts("STUB: WKUserContentURLPatternCopyHost called"); 7044 + return NULL; 7045 + } 7046 + 7047 + void* WKUserContentURLPatternCopyScheme(void) { 7048 + if (verbose) puts("STUB: WKUserContentURLPatternCopyScheme called"); 7049 + return NULL; 7050 + } 7051 + 7052 + void* WKUserContentURLPatternCreate(void) { 7053 + if (verbose) puts("STUB: WKUserContentURLPatternCreate called"); 7054 + return NULL; 7055 + } 7056 + 7057 + void* WKUserContentURLPatternGetTypeID(void) { 7058 + if (verbose) puts("STUB: WKUserContentURLPatternGetTypeID called"); 7059 + return NULL; 7060 + } 7061 + 7062 + void* WKUserContentURLPatternIsValid(void) { 7063 + if (verbose) puts("STUB: WKUserContentURLPatternIsValid called"); 7064 + return NULL; 7065 + } 7066 + 7067 + void* WKUserContentURLPatternMatchesSubdomains(void) { 7068 + if (verbose) puts("STUB: WKUserContentURLPatternMatchesSubdomains called"); 7069 + return NULL; 7070 + } 7071 + 7072 + void* WKUserContentURLPatternMatchesURL(void) { 7073 + if (verbose) puts("STUB: WKUserContentURLPatternMatchesURL called"); 7074 + return NULL; 7075 + } 7076 + 7077 + void* WKUserMediaPermissionCheckGetTypeID(void) { 7078 + if (verbose) puts("STUB: WKUserMediaPermissionCheckGetTypeID called"); 7079 + return NULL; 7080 + } 7081 + 7082 + void* WKUserMediaPermissionCheckSetUserMediaAccessInfo(void) { 7083 + if (verbose) puts("STUB: WKUserMediaPermissionCheckSetUserMediaAccessInfo called"); 7084 + return NULL; 7085 + } 7086 + 7087 + void* WKUserMediaPermissionRequestAllow(void) { 7088 + if (verbose) puts("STUB: WKUserMediaPermissionRequestAllow called"); 7089 + return NULL; 7090 + } 7091 + 7092 + void* WKUserMediaPermissionRequestAudioDeviceUIDs(void) { 7093 + if (verbose) puts("STUB: WKUserMediaPermissionRequestAudioDeviceUIDs called"); 7094 + return NULL; 7095 + } 7096 + 7097 + void* WKUserMediaPermissionRequestDeny(void) { 7098 + if (verbose) puts("STUB: WKUserMediaPermissionRequestDeny called"); 7099 + return NULL; 7100 + } 7101 + 7102 + void* WKUserMediaPermissionRequestGetTypeID(void) { 7103 + if (verbose) puts("STUB: WKUserMediaPermissionRequestGetTypeID called"); 7104 + return NULL; 7105 + } 7106 + 7107 + void* WKUserMediaPermissionRequestVideoDeviceUIDs(void) { 7108 + if (verbose) puts("STUB: WKUserMediaPermissionRequestVideoDeviceUIDs called"); 7109 + return NULL; 7110 + } 7111 + 7112 + void* WKUserScriptCopySource(void) { 7113 + if (verbose) puts("STUB: WKUserScriptCopySource called"); 7114 + return NULL; 7115 + } 7116 + 7117 + void* WKUserScriptCreateWithSource(void) { 7118 + if (verbose) puts("STUB: WKUserScriptCreateWithSource called"); 7119 + return NULL; 7120 + } 7121 + 7122 + void* WKUserScriptGetInjectionTime(void) { 7123 + if (verbose) puts("STUB: WKUserScriptGetInjectionTime called"); 7124 + return NULL; 7125 + } 7126 + 7127 + void* WKUserScriptGetMainFrameOnly(void) { 7128 + if (verbose) puts("STUB: WKUserScriptGetMainFrameOnly called"); 7129 + return NULL; 7130 + } 7131 + 7132 + void* WKUserScriptGetTypeID(void) { 7133 + if (verbose) puts("STUB: WKUserScriptGetTypeID called"); 7134 + return NULL; 7135 + } 7136 + 7137 + void* WKWebArchiveCopyData(void) { 7138 + if (verbose) puts("STUB: WKWebArchiveCopyData called"); 7139 + return NULL; 7140 + } 7141 + 7142 + void* WKWebArchiveCopyMainResource(void) { 7143 + if (verbose) puts("STUB: WKWebArchiveCopyMainResource called"); 7144 + return NULL; 7145 + } 7146 + 7147 + void* WKWebArchiveCopySubframeArchives(void) { 7148 + if (verbose) puts("STUB: WKWebArchiveCopySubframeArchives called"); 7149 + return NULL; 7150 + } 7151 + 7152 + void* WKWebArchiveCopySubresources(void) { 7153 + if (verbose) puts("STUB: WKWebArchiveCopySubresources called"); 7154 + return NULL; 7155 + } 7156 + 7157 + void* WKWebArchiveCreate(void) { 7158 + if (verbose) puts("STUB: WKWebArchiveCreate called"); 7159 + return NULL; 7160 + } 7161 + 7162 + void* WKWebArchiveCreateFromRange(void) { 7163 + if (verbose) puts("STUB: WKWebArchiveCreateFromRange called"); 7164 + return NULL; 7165 + } 7166 + 7167 + void* WKWebArchiveCreateWithData(void) { 7168 + if (verbose) puts("STUB: WKWebArchiveCreateWithData called"); 7169 + return NULL; 7170 + } 7171 + 7172 + void* WKWebArchiveGetTypeID(void) { 7173 + if (verbose) puts("STUB: WKWebArchiveGetTypeID called"); 7174 + return NULL; 7175 + } 7176 + 7177 + void* WKWebArchiveResourceCopyData(void) { 7178 + if (verbose) puts("STUB: WKWebArchiveResourceCopyData called"); 7179 + return NULL; 7180 + } 7181 + 7182 + void* WKWebArchiveResourceCopyMIMEType(void) { 7183 + if (verbose) puts("STUB: WKWebArchiveResourceCopyMIMEType called"); 7184 + return NULL; 7185 + } 7186 + 7187 + void* WKWebArchiveResourceCopyTextEncoding(void) { 7188 + if (verbose) puts("STUB: WKWebArchiveResourceCopyTextEncoding called"); 7189 + return NULL; 7190 + } 7191 + 7192 + void* WKWebArchiveResourceCopyURL(void) { 7193 + if (verbose) puts("STUB: WKWebArchiveResourceCopyURL called"); 7194 + return NULL; 7195 + } 7196 + 7197 + void* WKWebArchiveResourceCreate(void) { 7198 + if (verbose) puts("STUB: WKWebArchiveResourceCreate called"); 7199 + return NULL; 7200 + } 7201 + 7202 + void* WKWebArchiveResourceGetTypeID(void) { 7203 + if (verbose) puts("STUB: WKWebArchiveResourceGetTypeID called"); 7204 + return NULL; 7205 + } 7206 + 7207 + void* WKWebsiteDataStoreCreateNonPersistentDataStore(void) { 7208 + if (verbose) puts("STUB: WKWebsiteDataStoreCreateNonPersistentDataStore called"); 7209 + return NULL; 7210 + } 7211 + 7212 + void* WKWebsiteDataStoreGetDefaultDataStore(void) { 7213 + if (verbose) puts("STUB: WKWebsiteDataStoreGetDefaultDataStore called"); 7214 + return NULL; 7215 + } 7216 + 7217 + void* WKWebsiteDataStoreGetFetchCacheOrigins(void) { 7218 + if (verbose) puts("STUB: WKWebsiteDataStoreGetFetchCacheOrigins called"); 7219 + return NULL; 7220 + } 7221 + 7222 + void* WKWebsiteDataStoreGetFetchCacheSizeForOrigin(void) { 7223 + if (verbose) puts("STUB: WKWebsiteDataStoreGetFetchCacheSizeForOrigin called"); 7224 + return NULL; 7225 + } 7226 + 7227 + void* WKWebsiteDataStoreGetResourceLoadStatisticsEnabled(void) { 7228 + if (verbose) puts("STUB: WKWebsiteDataStoreGetResourceLoadStatisticsEnabled called"); 7229 + return NULL; 7230 + } 7231 + 7232 + void* WKWebsiteDataStoreGetTypeID(void) { 7233 + if (verbose) puts("STUB: WKWebsiteDataStoreGetTypeID called"); 7234 + return NULL; 7235 + } 7236 + 7237 + void* WKWebsiteDataStoreIsStatisticsGrandfathered(void) { 7238 + if (verbose) puts("STUB: WKWebsiteDataStoreIsStatisticsGrandfathered called"); 7239 + return NULL; 7240 + } 7241 + 7242 + void* WKWebsiteDataStoreIsStatisticsHasHadUserInteraction(void) { 7243 + if (verbose) puts("STUB: WKWebsiteDataStoreIsStatisticsHasHadUserInteraction called"); 7244 + return NULL; 7245 + } 7246 + 7247 + void* WKWebsiteDataStoreIsStatisticsPrevalentResource(void) { 7248 + if (verbose) puts("STUB: WKWebsiteDataStoreIsStatisticsPrevalentResource called"); 7249 + return NULL; 7250 + } 7251 + 7252 + void* WKWebsiteDataStoreIsStatisticsRegisteredAsRedirectingTo(void) { 7253 + if (verbose) puts("STUB: WKWebsiteDataStoreIsStatisticsRegisteredAsRedirectingTo called"); 7254 + return NULL; 7255 + } 7256 + 7257 + void* WKWebsiteDataStoreIsStatisticsRegisteredAsSubFrameUnder(void) { 7258 + if (verbose) puts("STUB: WKWebsiteDataStoreIsStatisticsRegisteredAsSubFrameUnder called"); 7259 + return NULL; 7260 + } 7261 + 7262 + void* WKWebsiteDataStoreRemoveAllFetchCaches(void) { 7263 + if (verbose) puts("STUB: WKWebsiteDataStoreRemoveAllFetchCaches called"); 7264 + return NULL; 7265 + } 7266 + 7267 + void* WKWebsiteDataStoreRemoveAllIndexedDatabases(void) { 7268 + if (verbose) puts("STUB: WKWebsiteDataStoreRemoveAllIndexedDatabases called"); 7269 + return NULL; 7270 + } 7271 + 7272 + void* WKWebsiteDataStoreRemoveAllServiceWorkerRegistrations(void) { 7273 + if (verbose) puts("STUB: WKWebsiteDataStoreRemoveAllServiceWorkerRegistrations called"); 7274 + return NULL; 7275 + } 7276 + 7277 + void* WKWebsiteDataStoreRemoveFetchCacheForOrigin(void) { 7278 + if (verbose) puts("STUB: WKWebsiteDataStoreRemoveFetchCacheForOrigin called"); 7279 + return NULL; 7280 + } 7281 + 7282 + void* WKWebsiteDataStoreSetResourceLoadStatisticsEnabled(void) { 7283 + if (verbose) puts("STUB: WKWebsiteDataStoreSetResourceLoadStatisticsEnabled called"); 7284 + return NULL; 7285 + } 7286 + 7287 + void* WKWebsiteDataStoreSetStatisticsGrandfathered(void) { 7288 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsGrandfathered called"); 7289 + return NULL; 7290 + } 7291 + 7292 + void* WKWebsiteDataStoreSetStatisticsGrandfatheringTime(void) { 7293 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsGrandfatheringTime called"); 7294 + return NULL; 7295 + } 7296 + 7297 + void* WKWebsiteDataStoreSetStatisticsHasHadNonRecentUserInteraction(void) { 7298 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsHasHadNonRecentUserInteraction called"); 7299 + return NULL; 7300 + } 7301 + 7302 + void* WKWebsiteDataStoreSetStatisticsHasHadUserInteraction(void) { 7303 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsHasHadUserInteraction called"); 7304 + return NULL; 7305 + } 7306 + 7307 + void* WKWebsiteDataStoreSetStatisticsLastSeen(void) { 7308 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsLastSeen called"); 7309 + return NULL; 7310 + } 7311 + 7312 + void* WKWebsiteDataStoreSetStatisticsMaxStatisticsEntries(void) { 7313 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsMaxStatisticsEntries called"); 7314 + return NULL; 7315 + } 7316 + 7317 + void* WKWebsiteDataStoreSetStatisticsMinimumTimeBetweenDataRecordsRemoval(void) { 7318 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsMinimumTimeBetweenDataRecordsRemoval called"); 7319 + return NULL; 7320 + } 7321 + 7322 + void* WKWebsiteDataStoreSetStatisticsNotifyPagesWhenDataRecordsWereScanned(void) { 7323 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsNotifyPagesWhenDataRecordsWereScanned called"); 7324 + return NULL; 7325 + } 7326 + 7327 + void* WKWebsiteDataStoreSetStatisticsNotifyPagesWhenTelemetryWasCaptured(void) { 7328 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsNotifyPagesWhenTelemetryWasCaptured called"); 7329 + return NULL; 7330 + } 7331 + 7332 + void* WKWebsiteDataStoreSetStatisticsPrevalentResource(void) { 7333 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsPrevalentResource called"); 7334 + return NULL; 7335 + } 7336 + 7337 + void* WKWebsiteDataStoreSetStatisticsPruneEntriesDownTo(void) { 7338 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsPruneEntriesDownTo called"); 7339 + return NULL; 7340 + } 7341 + 7342 + void* WKWebsiteDataStoreSetStatisticsShouldClassifyResourcesBeforeDataRecordsRemoval(void) { 7343 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsShouldClassifyResourcesBeforeDataRecordsRemoval called"); 7344 + return NULL; 7345 + } 7346 + 7347 + void* WKWebsiteDataStoreSetStatisticsShouldPartitionCookiesForHost(void) { 7348 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsShouldPartitionCookiesForHost called"); 7349 + return NULL; 7350 + } 7351 + 7352 + void* WKWebsiteDataStoreSetStatisticsSubframeUnderTopFrameOrigin(void) { 7353 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsSubframeUnderTopFrameOrigin called"); 7354 + return NULL; 7355 + } 7356 + 7357 + void* WKWebsiteDataStoreSetStatisticsSubresourceUnderTopFrameOrigin(void) { 7358 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsSubresourceUnderTopFrameOrigin called"); 7359 + return NULL; 7360 + } 7361 + 7362 + void* WKWebsiteDataStoreSetStatisticsSubresourceUniqueRedirectTo(void) { 7363 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsSubresourceUniqueRedirectTo called"); 7364 + return NULL; 7365 + } 7366 + 7367 + void* WKWebsiteDataStoreSetStatisticsTimeToLiveCookiePartitionFree(void) { 7368 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsTimeToLiveCookiePartitionFree called"); 7369 + return NULL; 7370 + } 7371 + 7372 + void* WKWebsiteDataStoreSetStatisticsTimeToLiveUserInteraction(void) { 7373 + if (verbose) puts("STUB: WKWebsiteDataStoreSetStatisticsTimeToLiveUserInteraction called"); 7374 + return NULL; 7375 + } 7376 + 7377 + void* WKWebsiteDataStoreStatisticsClearInMemoryAndPersistentStore(void) { 7378 + if (verbose) puts("STUB: WKWebsiteDataStoreStatisticsClearInMemoryAndPersistentStore called"); 7379 + return NULL; 7380 + } 7381 + 7382 + void* WKWebsiteDataStoreStatisticsClearInMemoryAndPersistentStoreModifiedSinceHours(void) { 7383 + if (verbose) puts("STUB: WKWebsiteDataStoreStatisticsClearInMemoryAndPersistentStoreModifiedSinceHours called"); 7384 + return NULL; 7385 + } 7386 + 7387 + void* WKWebsiteDataStoreStatisticsClearThroughWebsiteDataRemoval(void) { 7388 + if (verbose) puts("STUB: WKWebsiteDataStoreStatisticsClearThroughWebsiteDataRemoval called"); 7389 + return NULL; 7390 + } 7391 + 7392 + void* WKWebsiteDataStoreStatisticsProcessStatisticsAndDataRecords(void) { 7393 + if (verbose) puts("STUB: WKWebsiteDataStoreStatisticsProcessStatisticsAndDataRecords called"); 7394 + return NULL; 7395 + } 7396 + 7397 + void* WKWebsiteDataStoreStatisticsResetToConsistentState(void) { 7398 + if (verbose) puts("STUB: WKWebsiteDataStoreStatisticsResetToConsistentState called"); 7399 + return NULL; 7400 + } 7401 + 7402 + void* WKWebsiteDataStoreStatisticsSubmitTelemetry(void) { 7403 + if (verbose) puts("STUB: WKWebsiteDataStoreStatisticsSubmitTelemetry called"); 7404 + return NULL; 7405 + } 7406 + 7407 + void* WKWebsiteDataStoreStatisticsUpdateCookiePartitioning(void) { 7408 + if (verbose) puts("STUB: WKWebsiteDataStoreStatisticsUpdateCookiePartitioning called"); 7409 + return NULL; 7410 + } 7411 + 7412 + void* WKWebsitePoliciesCopyCustomHeaderFields(void) { 7413 + if (verbose) puts("STUB: WKWebsitePoliciesCopyCustomHeaderFields called"); 7414 + return NULL; 7415 + } 7416 + 7417 + void* WKWebsitePoliciesCreate(void) { 7418 + if (verbose) puts("STUB: WKWebsitePoliciesCreate called"); 7419 + return NULL; 7420 + } 7421 + 7422 + void* WKWebsitePoliciesGetAllowedAutoplayQuirks(void) { 7423 + if (verbose) puts("STUB: WKWebsitePoliciesGetAllowedAutoplayQuirks called"); 7424 + return NULL; 7425 + } 7426 + 7427 + void* WKWebsitePoliciesGetAutoplayPolicy(void) { 7428 + if (verbose) puts("STUB: WKWebsitePoliciesGetAutoplayPolicy called"); 7429 + return NULL; 7430 + } 7431 + 7432 + void* WKWebsitePoliciesGetContentBlockersEnabled(void) { 7433 + if (verbose) puts("STUB: WKWebsitePoliciesGetContentBlockersEnabled called"); 7434 + return NULL; 7435 + } 7436 + 7437 + void* WKWebsitePoliciesGetDataStore(void) { 7438 + if (verbose) puts("STUB: WKWebsitePoliciesGetDataStore called"); 7439 + return NULL; 7440 + } 7441 + 7442 + void* WKWebsitePoliciesGetTypeID(void) { 7443 + if (verbose) puts("STUB: WKWebsitePoliciesGetTypeID called"); 7444 + return NULL; 7445 + } 7446 + 7447 + void* WKWebsitePoliciesSetAllowedAutoplayQuirks(void) { 7448 + if (verbose) puts("STUB: WKWebsitePoliciesSetAllowedAutoplayQuirks called"); 7449 + return NULL; 7450 + } 7451 + 7452 + void* WKWebsitePoliciesSetAutoplayPolicy(void) { 7453 + if (verbose) puts("STUB: WKWebsitePoliciesSetAutoplayPolicy called"); 7454 + return NULL; 7455 + } 7456 + 7457 + void* WKWebsitePoliciesSetContentBlockersEnabled(void) { 7458 + if (verbose) puts("STUB: WKWebsitePoliciesSetContentBlockersEnabled called"); 7459 + return NULL; 7460 + } 7461 + 7462 + void* WKWebsitePoliciesSetCustomHeaderFields(void) { 7463 + if (verbose) puts("STUB: WKWebsitePoliciesSetCustomHeaderFields called"); 7464 + return NULL; 7465 + } 7466 + 7467 + void* WKWebsitePoliciesSetDataStore(void) { 7468 + if (verbose) puts("STUB: WKWebsitePoliciesSetDataStore called"); 7469 + return NULL; 7470 + } 7471 + 7472 + void* WKWindowFeaturesGetTypeID(void) { 7473 + if (verbose) puts("STUB: WKWindowFeaturesGetTypeID called"); 7474 + return NULL; 7475 + } 7476 + 7477 + void* WebContentServiceInitializer(void) { 7478 + if (verbose) puts("STUB: WebContentServiceInitializer called"); 7479 + return NULL; 7480 + } 7481 + 7482 + void* _WKSetCrashReportApplicationSpecificInformation(void) { 7483 + if (verbose) puts("STUB: _WKSetCrashReportApplicationSpecificInformation called"); 7484 + return NULL; 7485 + } 7486 + 7487 + void* _ZN6WebKit20EnvironmentUtilities27stripValuesEndingWithStringEPKcS2_(void) { 7488 + if (verbose) puts("STUB: _ZN6WebKit20EnvironmentUtilities27stripValuesEndingWithStringEPKcS2_ called"); 7489 + return NULL; 7490 + } 7491 + 7492 + void* _ZN6WebKit44setCrashReportApplicationSpecificInformationEPK10__CFString(void) { 7493 + if (verbose) puts("STUB: _ZN6WebKit44setCrashReportApplicationSpecificInformationEPK10__CFString called"); 7494 + return NULL; 7495 + }
+32
src/WebKit/src/_WKActivatedElementInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKActivatedElementInfo.h> 21 + 22 + @implementation _WKActivatedElementInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKApplicationManifest.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKApplicationManifest.h> 21 + 22 + @implementation _WKApplicationManifest 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKAttachment.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKAttachment.h> 21 + 22 + @implementation _WKAttachment 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKAttachmentDisplayOptions.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKAttachmentDisplayOptions.h> 21 + 22 + @implementation _WKAttachmentDisplayOptions 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKAutomationSession.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKAutomationSession.h> 21 + 22 + @implementation _WKAutomationSession 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKAutomationSessionConfiguration.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKAutomationSessionConfiguration.h> 21 + 22 + @implementation _WKAutomationSessionConfiguration 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKContextMenuElementInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKContextMenuElementInfo.h> 21 + 22 + @implementation _WKContextMenuElementInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKDownload.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKDownload.h> 21 + 22 + @implementation _WKDownload 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKExperimentalFeature.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKExperimentalFeature.h> 21 + 22 + @implementation _WKExperimentalFeature 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKFrameHandle.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKFrameHandle.h> 21 + 22 + @implementation _WKFrameHandle 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKHitTestResult.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKHitTestResult.h> 21 + 22 + @implementation _WKHitTestResult 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKLinkIconParameters.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKLinkIconParameters.h> 21 + 22 + @implementation _WKLinkIconParameters 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKProcessPoolConfiguration.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKProcessPoolConfiguration.h> 21 + 22 + @implementation _WKProcessPoolConfiguration 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKRemoteObjectInterface.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKRemoteObjectInterface.h> 21 + 22 + @implementation _WKRemoteObjectInterface 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKRemoteObjectRegistry.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKRemoteObjectRegistry.h> 21 + 22 + @implementation _WKRemoteObjectRegistry 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKRemoteWebInspectorViewController.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKRemoteWebInspectorViewController.h> 21 + 22 + @implementation _WKRemoteWebInspectorViewController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKSessionState.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKSessionState.h> 21 + 22 + @implementation _WKSessionState 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKThumbnailView.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKThumbnailView.h> 21 + 22 + @implementation _WKThumbnailView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKUserContentExtensionStore.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKUserContentExtensionStore.h> 21 + 22 + @implementation _WKUserContentExtensionStore 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKUserContentFilter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKUserContentFilter.h> 21 + 22 + @implementation _WKUserContentFilter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKUserContentWorld.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKUserContentWorld.h> 21 + 22 + @implementation _WKUserContentWorld 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKUserInitiatedAction.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKUserInitiatedAction.h> 21 + 22 + @implementation _WKUserInitiatedAction 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKUserStyleSheet.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKUserStyleSheet.h> 21 + 22 + @implementation _WKUserStyleSheet 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKVisitedLinkStore.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKVisitedLinkStore.h> 21 + 22 + @implementation _WKVisitedLinkStore 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKWebsiteDataSize.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKWebsiteDataSize.h> 21 + 22 + @implementation _WKWebsiteDataSize 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKWebsiteDataStore.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKWebsiteDataStore.h> 21 + 22 + @implementation _WKWebsiteDataStore 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKWebsiteDataStoreConfiguration.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKWebsiteDataStoreConfiguration.h> 21 + 22 + @implementation _WKWebsiteDataStoreConfiguration 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end
+32
src/WebKit/src/_WKWebsitePolicies.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2017 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <WebKit/_WKWebsitePolicies.h> 21 + 22 + @implementation _WKWebsitePolicies 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector { 25 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 26 + } 27 + 28 + - (void)forwardInvocation:(NSInvocation *)anInvocation { 29 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 30 + } 31 + 32 + @end