Move off of internal SDK, copy webkit spis from opensource
This commit is contained in:
@@ -5,8 +5,9 @@
|
||||
#import "SBRProcessBundleBridge.h"
|
||||
#import "SBRScriptPolicy.h"
|
||||
|
||||
#import "WebKitDefines.h"
|
||||
|
||||
// SPI
|
||||
#import <UIKit/UITextField_Private.h>
|
||||
#import <WebKit/WKWebViewPrivate.h>
|
||||
#import <WebKit/_WKFindDelegate.h>
|
||||
|
||||
|
||||
19
App/Supporting Files/WebKitDefines.h
Normal file
19
App/Supporting Files/WebKitDefines.h
Normal file
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// WebKitDefines.h
|
||||
// SBrowser
|
||||
//
|
||||
// Created by James Magahern on 4/11/25.
|
||||
//
|
||||
|
||||
#ifndef WebKitDefines_h
|
||||
#define WebKitDefines_h
|
||||
|
||||
#define WK_API_AVAILABLE(...)
|
||||
#define WK_API_UNAVAILABLE(...)
|
||||
#define WK_CLASS_AVAILABLE(...) __attribute__((visibility("default"))) WK_API_AVAILABLE(__VA_ARGS__)
|
||||
#define WK_API_DEPRECATED(_message, ...) __attribute__((deprecated(_message)))
|
||||
#define WK_API_DEPRECATED_WITH_REPLACEMENT(_replacement, ...) __attribute__((deprecated("use " #_replacement)))
|
||||
#define WK_CLASS_DEPRECATED_WITH_REPLACEMENT(_replacement, ...) __attribute__((visibility("default"))) __attribute__((deprecated("use " #_replacement)))
|
||||
|
||||
|
||||
#endif /* WebKitDefines_h */
|
||||
Reference in New Issue
Block a user