Skip to content

BrowserEngineKit macOS xcode15.3 b1

Alex Soto edited this page Jan 27, 2024 · 1 revision

#BrowserEngineKit.framework

diff -ruN /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEContextMenuConfiguration.h /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEContextMenuConfiguration.h
--- /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEContextMenuConfiguration.h	1969-12-31 19:00:00
+++ /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEContextMenuConfiguration.h	2024-01-11 22:44:32
@@ -0,0 +1,45 @@
+//
+//  BEContextMenuConfiguration.h
+//
+//  Copyright © 2023 Apple Inc. All rights reserved.
+//
+
+#import <BrowserEngineKit/BEMacros.h>
+
+#if BROWSERENGINEKIT_HAS_UIVIEW
+#import <UIKit/UIContextMenuConfiguration.h>
+
+NS_HEADER_AUDIT_BEGIN(nullability, sendability)
+
+/**
+ *  A specialized `UIContextMenuConfiguration` object to defer a context menu presentation when the
+ *  when the context menu gestures are first recognized and a possible menu presentation is not immediately known.
+ */
+BROWSERENGINE_EXTERN API_AVAILABLE(ios(17.4)) API_UNAVAILABLE(tvos, visionos) API_UNAVAILABLE(watchos) NS_SWIFT_UI_ACTOR
+@interface BEContextMenuConfiguration : UIContextMenuConfiguration
+
+/// Fulfills the configuration with a concrete configuration. Once fulfilled, the context menu presentation will begin.
+/// You should call this method as soon as you have determined that a menu presentation is possible for the configuration, as to
+/// minimize the delay between the context menu gesture's recognition and the menu's presentation. If no menu presentation is possible,
+/// fulfill with a `nil` configuration.
+///
+/// There is a system-defined timeout before the configuration is cancelled, where no menu presents. This method returns `YES` if the
+/// configuration did successfully prepare, and `NO` otherwise.
+///
+/// @NOTE: The fulfilled configuration is used by `UIContextMenuInteractionDelegate` when referencing any `UIContextMenuConfiguration`,
+/// rather than this object.
+- (BOOL)fulfillUsingConfiguration:(nullable UIContextMenuConfiguration *)configuration;
+
+/// Creates a new configuration for the context menu interaction.
+- (instancetype)init NS_DESIGNATED_INITIALIZER;
+
+/// For a concrete configuration, use the parent `UIContextMenuConfiguration` class instead.
++ (instancetype)configurationWithIdentifier:(nullable id<NSCopying>)identifier
+                            previewProvider:(nullable UIContextMenuContentPreviewProvider)previewProvider
+                             actionProvider:(nullable UIContextMenuActionProvider)actionProvider NS_UNAVAILABLE;
+
+@end
+
+NS_HEADER_AUDIT_END(nullability, sendability)
+
+#endif // BROWSERENGINEKIT_HAS_UIVIEW
diff -ruN /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEDragInteraction.h /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEDragInteraction.h
--- /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEDragInteraction.h	1969-12-31 19:00:00
+++ /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEDragInteraction.h	2024-01-11 22:44:32
@@ -0,0 +1,62 @@
+//
+//  BEDragInteraction.h
+//
+//  Copyright © 2023 Apple Inc. All rights reserved.
+//
+
+#import <BrowserEngineKit/BEMacros.h>
+
+#if BROWSERENGINEKIT_HAS_UIVIEW
+#import <UIKit/UIDragInteraction.h>
+
+NS_HEADER_AUDIT_BEGIN(nullability, sendability)
+
+@class BEDragInteraction;
+
+API_AVAILABLE(ios(17.4)) API_UNAVAILABLE(visionos) API_UNAVAILABLE(tvos, watchos) NS_SWIFT_UI_ACTOR
+@protocol BEDragInteractionDelegate <UIDragInteractionDelegate>
+
+@optional
+
+/**
+ *  Called when the drag interaction has begun, to allow the delegate to prepare for the drag session before
+ *  the system requests drag items through `-dragInteraction:itemsForBeginningSession:`.
+ *
+ *  You should call the `completion` block as soon as the drag session is prepared, as to minimize the delay
+ *  from the user interaction from the drag gesture. There is a system-defined timeout before the drag session is
+ *  failed if the `completion` is not called in time. The `completion` block returns `YES` if the drag session did
+ *  prepare successfully prepare, and `NO` otherwise, to allow clients to perform any clean-up if necessary.
+ */
+- (void)dragInteraction:(BEDragInteraction *)dragInteraction prepareDragSession:(id<UIDragSession>)session completion:(BOOL(^)(void))completion;
+
+/**
+ *  The asynchronous counterpart to `-dragInteraction:itemsForAddingToSession:withTouchAtPoint:` to allow
+ *  touches on this view to add items to an existing drag session. Please refer to the aforementioned delegate method for its full
+ *  documentation.
+ *
+ *  If this method is implemented, then the `UIDragInteractionDelegate` counterpart method will no longer be called.
+ *
+ *  You should call the `completion` block as soon as the items are ready. There is a system-defined
+ *  timeout before the system will treat the delegate call as returning an empty array. The `completion` block
+ *  returns `YES` if the drag session did add items to the session successfully, and `NO` otherwise, to allow
+ *  clients to perform any clean-up if necessary.
+ */
+- (void)dragInteraction:(BEDragInteraction *)dragInteraction itemsForAddingToSession:(id<UIDragSession>)session forTouchAtPoint:(CGPoint)point completion:(BOOL(^)(NSArray<UIDragItem *> *))completion;
+
+@end
+
+/// A `UIDragInteraction` subclass with features specific to browsers to enable asynchronous preparations and behaviours.
+BROWSERENGINE_EXTERN API_AVAILABLE(ios(17.4)) API_UNAVAILABLE(visionos) API_UNAVAILABLE(tvos, watchos) NS_SWIFT_UI_ACTOR
+@interface BEDragInteraction: UIDragInteraction
+
+/// The object that manages the drag interaction lifecycle.
+@property (nonatomic, readonly, weak, nullable) id<BEDragInteractionDelegate> delegate;
+
+/// Creates an drag interaction with the specified delegate.
+- (instancetype)initWithDelegate:(id<BEDragInteractionDelegate>)delegate NS_DESIGNATED_INITIALIZER;
+
+@end
+
+NS_HEADER_AUDIT_END(nullability, sendability)
+
+#endif // BROWSERENGINEKIT_HAS_UIVIEW
diff -ruN /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEMacros.h /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEMacros.h
--- /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEMacros.h	1969-12-31 19:00:00
+++ /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEMacros.h	2024-01-11 22:44:31
@@ -0,0 +1,7 @@
+//
+//  BEMacros.h
+//
+
+#import <BrowserEngineCore/BEMacros.h>
+
+#define BROWSERENGINEKIT_HAS_UIVIEW __has_include(<UIKit/UIView.h>)
diff -ruN /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BENetworkingProcess.h /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BENetworkingProcess.h
--- /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BENetworkingProcess.h	1969-12-31 19:00:00
+++ /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BENetworkingProcess.h	2024-01-11 22:44:32
@@ -0,0 +1,58 @@
+//
+//  BENetworkingProcess.h
+//
+//  Copyright © 2023 Apple Inc. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+#import <BrowserEngineKit/BEMacros.h>
+#include <xpc/xpc.h>
+
+NS_ASSUME_NONNULL_BEGIN
+
+/// An object that represents a running network extension process.
+///
+/// The system guarantees that the extension process has launched by the time the initializer methods return.
+/// If the extension process exits, the system calls ``interruptionHandler``. There can only be one extension process per
+/// host browser. The first time this type is initialized, a  process will be launched. If a extension process is all ready
+/// running, the returned object will represent the already running process.
+NS_REFINED_FOR_SWIFT
+API_AVAILABLE(macos(14.3), ios(17.4))
+API_UNAVAILABLE(watchos, tvos, visionos)
+BROWSERENGINE_EXPORT
+@interface BENetworkingProcess: NSObject
+
+-(instancetype)init NS_UNAVAILABLE;
++(instancetype)new NS_UNAVAILABLE;
+
+/// Asynchronously finds an existing network extension process or launches a one.
+///
+/// This initializer finds an existing networking extension process. If it’s unable to find an
+/// existing process, it launches a new extension process.
+///
+/// - Parameters:
+///   - `interruptionHandler` : A block that is called if the extension process terminates.
+///   - `completion` : A block called with a new ``BEWebContentProcess`` when the extension process has
+///     launched or with an error.
++(void)networkProcessWithInterruptionHandler:(void(^)(void))interruptionHandler
+                               completion:(void(^)(BENetworkingProcess* _Nullable process, NSError* _Nullable error))completion;
+
+/// Stops the extension process.
+///
+/// When you call this method, you tell the system your app no longer needs this extension process.
+/// The system will terminate the extension process.
+-(void)invalidate;
+
+/// Creates a new libXPC connection to the extension process.
+///
+/// This method creates a connection to the extension process and returns it. If it is not possible to make an XPC connection, this method will return nil and populate the `error` out param.
+///
+/// - Returns: The connection object representing the created libXPC connection or nil.
+-(nullable xpc_connection_t)makeLibXPCConnectionError:(NSError* _Nullable*)error;
+
+
+@end
+
+
+
+NS_ASSUME_NONNULL_END
diff -ruN /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BERenderingProcess.h /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BERenderingProcess.h
--- /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BERenderingProcess.h	1969-12-31 19:00:00
+++ /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BERenderingProcess.h	2024-01-11 22:44:32
@@ -0,0 +1,57 @@
+//
+//  BERenderingProcess.h
+//
+//  Copyright © 2023 Apple Inc. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+#import <BrowserEngineKit/BEMacros.h>
+#include <xpc/xpc.h>
+
+NS_ASSUME_NONNULL_BEGIN
+
+/// An object that represents a running GPU extension process.
+///
+/// The system guarantees that the extension process has launched by the time the initializer methods return.
+/// If the extension process exits, the system calls ``interruptionHandler``. There can only be one extension process per
+/// host browser. The first time this type is initialized, a  process will be launched. If a extension process is all ready
+/// running, the returned object will represent the already running process.
+NS_REFINED_FOR_SWIFT
+API_AVAILABLE(macos(14.3), ios(17.4))
+API_UNAVAILABLE(watchos, tvos, visionos)
+BROWSERENGINE_EXPORT
+@interface BERenderingProcess: NSObject
+
+-(instancetype)init NS_UNAVAILABLE;
++(instancetype)new NS_UNAVAILABLE;
+
+/// Asynchronously finds an existing extension process or launches one.
+///
+/// This initializer finds an existing extension rendering process. If it’s unable to find an
+/// existing process, it launches a new extension process.
+///
+/// - Parameters:
+///   - `interruptionHandler` : A block that is called if the extension process terminates.
+///   - `completion` : A block called with a new ``BERenderingProcess`` when the extension process has
+///     launched or with an error.
++(void)renderingProcessWithInterruptionHandler:(void(^)(void))interruptionHandler
+                           completion:(void(^)(BERenderingProcess* _Nullable process, NSError* _Nullable error))completion;
+
+/// Stops the extension process.
+///
+/// When you call this method, you tell the system your app no longer needs this extension process.
+/// If this is the last connection from the host process to the extension process, the system terminates
+/// the extension process.
+-(void)invalidate;
+
+/// Creates a new libXPC connection to the extension process.
+///
+/// This method creates a connection to the extension process and returns it. If it is not possible to make an XPC connection, this method will return nil and populate the `error` out param.
+///
+/// - Returns: The connection object representing the created libXPC connection or nil.
+-(nullable xpc_connection_t)makeLibXPCConnectionError:(NSError* _Nullable*)error;
+
+
+@end
+
+NS_ASSUME_NONNULL_END
diff -ruN /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEScrollView.h /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEScrollView.h
--- /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEScrollView.h	1969-12-31 19:00:00
+++ /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEScrollView.h	2024-01-11 22:44:32
@@ -0,0 +1,86 @@
+//
+//  BEScrollView.h
+//
+//  Copyright © 2023 Apple Inc. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+#import <BrowserEngineKit/BEMacros.h>
+
+#if BROWSERENGINEKIT_HAS_UIVIEW
+
+#import <UIKit/UIKit.h>
+
+NS_HEADER_AUDIT_BEGIN(nullability, sendability)
+
+@class BEScrollView, BEScrollViewScrollUpdate;
+
+
+BROWSERENGINE_EXPORT API_AVAILABLE(ios(17.4)) NS_SWIFT_UI_ACTOR
+@protocol BEScrollViewDelegate <UIScrollViewDelegate>
+
+@optional
+
+// If implemented, scroll updates will be passed to this delegate method before being handled by
+// the scroll view. The delegate may do some work, then must asynchronously call the completion block on the main queue.
+// This method will be called multiple times, and the delegate must call the completions in order.
+//
+// Extract information from `scrollUpdate` immediately, since its properties may change later,
+// and it's only safe to access on the main queue.
+//
+// Call the completion with `handled` = YES to indicate that you handled the scroll event and
+// don't want BEScrollView to react to the scroll event.
+// Pass `handled` = NO to have the event be handled in the normal way (just delayed).
+- (void)scrollView:(BEScrollView *)scrollView handleScrollUpdate:(BEScrollViewScrollUpdate *)scrollUpdate completion:(void (^)(BOOL handled))completion;
+
+// In order to implement CSS rendering, it may be necessary to make two scroll views siblings in the view tree that are nested in the DOM.
+// This method may be used to specify that a sibling scroll view should be considered the parent of another, for the purpose of gesture interaction and scroll transfer.
+// The parent is expected to be earlier in an in-order traversal of the view tree, since a parent would normally be visually underneath its child.
+// Return nil for the default behavior of traversing up the view tree to find a parent scroll view.
+- (nullable BEScrollView *)parentScrollViewForScrollView:(BEScrollView *)scrollView;
+
+@end
+
+
+// A scroll view with features specific to browsers.
+BROWSERENGINE_EXPORT API_AVAILABLE(ios(17.4)) NS_SWIFT_UI_ACTOR
+@interface BEScrollView : UIScrollView
+
+@property (nonatomic, weak, nullable) id<BEScrollViewDelegate> delegate;
+
+@end
+
+
+// Phases of a BEScrollViewScrollUpdate.
+typedef NS_ENUM(NSInteger, BEScrollViewScrollUpdatePhase) {
+    BEScrollViewScrollUpdatePhaseBegan,     // Whenever a gesture scroll has physically started.
+    BEScrollViewScrollUpdatePhaseChanged,   // Whenever a gesture scroll has changed.
+    BEScrollViewScrollUpdatePhaseEnded,     // Whenever a gesture scroll physically ends.
+    BEScrollViewScrollUpdatePhaseCancelled, // Whenever a gesture scroll doesn't end but the system stops tracking.
+} NS_SWIFT_NAME(BEScrollViewScrollUpdate.Phase) API_AVAILABLE(ios(17.4));
+
+
+// An update from a scroll view issued during a scroll event (e.g. trackpad or mouse wheel) or deceleration after a scroll event.
+BROWSERENGINE_EXPORT API_AVAILABLE(ios(17.4)) NS_SWIFT_UI_ACTOR
+@interface BEScrollViewScrollUpdate : NSObject
+
+- (instancetype)init NS_UNAVAILABLE;
++ (instancetype)new NS_UNAVAILABLE;
+
+// The time when the update occurred, in seconds since system startup.
+@property (nonatomic, readonly) NSTimeInterval timestamp;
+
+// The phase of the update.
+@property (nonatomic, readonly) BEScrollViewScrollUpdatePhase phase;
+
+// The location of the pointer where the scroll occurred in the coordinate space of the specified view. Specify nil to indicate the window.
+- (CGPoint)locationInView:(nullable UIView *)view;
+
+// The scroll delta in the coordinate space of the specified view. Specify nil to indicate the window.
+- (CGPoint)translationInView:(nullable UIView *)view;
+
+@end
+
+NS_HEADER_AUDIT_END(nullability, sendability)
+
+#endif // BROWSERENGINEKIT_HAS_UIVIEW
diff -ruN /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEWebContentProcess.h /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEWebContentProcess.h
--- /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEWebContentProcess.h	1969-12-31 19:00:00
+++ /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BEWebContentProcess.h	2024-01-11 22:44:32
@@ -0,0 +1,54 @@
+//
+//  BEWebContentProcess.h
+//
+//  Copyright © 2023 Apple Inc. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+#import <BrowserEngineKit/BEMacros.h>
+#include <xpc/xpc.h>
+
+NS_ASSUME_NONNULL_BEGIN
+
+/// An object that represents a running web content extension process.
+///
+/// The system guarantees that the extension process has launched by the time the initializer methods return.
+/// If the extension process exits, the system calls ``interuptionHandler``. There can multiple web content process
+/// per  host browser. Each time this type is initialized, a new extension process will be launched.
+NS_REFINED_FOR_SWIFT
+API_AVAILABLE(macos(14.3), ios(17.4))
+API_UNAVAILABLE(watchos, tvos, visionos)
+BROWSERENGINE_EXPORT
+@interface BEWebContentProcess: NSObject
+
+-(instancetype)init NS_UNAVAILABLE;
++(instancetype)new NS_UNAVAILABLE;
+
+/// Asynchronously launches a web content process
+///
+/// This initializer launches a new web content extension process.
+///
+/// - Parameters:
+///   - `interruptionHandler` : A block that is called if the extension process terminates.
+///   - `completion` : A block called with a new ``BEWebContentProcess`` when the extension process has
+///     launched or with an error.
++(void)webContentProcessWithInterruptionHandler:(void(^)(void))interruptionHandler
+                                  completion:(void(^)(BEWebContentProcess* _Nullable process, NSError* _Nullable error))completion;
+
+/// Stops the extension process.
+///
+/// When you call this method, you tell the system your app no longer needs this extension process.
+/// If this is the last connection from the host process to the extension process, the system terminates
+/// the extension process.
+-(void)invalidate;
+
+/// Creates a new libXPC connection to the extension process.
+///
+/// This method creates a connection to the extension process and returns it. If it is not possible to make an XPC connection, this method will return nil and populate the `error` out param.
+///
+/// - Returns: The connection object representing the created libXPC connection or nil.
+-(nullable xpc_connection_t)makeLibXPCConnectionError:(NSError* _Nullable*)error;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff -ruN /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BrowserEngineKit.h /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BrowserEngineKit.h
--- /Applications/Xcode_15.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BrowserEngineKit.h	1969-12-31 19:00:00
+++ /Applications/Xcode_15.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BrowserEngineKit.framework/Headers/BrowserEngineKit.h	2024-01-11 22:44:31
@@ -0,0 +1,15 @@
+//
+//  BrowserEngineKit.h
+//
+
+#import <Foundation/Foundation.h>
+#import <BrowserEngineCore/BrowserEngineCore.h>
+
+#import <BrowserEngineKit/BEMacros.h>
+#import <BrowserEngineKit/BEContextMenuConfiguration.h>
+#import <BrowserEngineKit/BEDragInteraction.h>
+#import <BrowserEngineKit/BEScrollView.h>
+
+#import <BrowserEngineKit/BEWebContentProcess.h>
+#import <BrowserEngineKit/BENetworkingProcess.h>
+#import <BrowserEngineKit/BERenderingProcess.h>
Clone this wiki locally