Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/sentry-cocoa
Submodule sentry-cocoa updated 426 files
34 changes: 19 additions & 15 deletions src/Sentry.Bindings.Cocoa/ApiDefinitions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1702,6 +1702,10 @@ interface SentryOptions
[Export("enablePreWarmedAppStartTracing")]
bool EnablePreWarmedAppStartTracing { get; set; }

// @property (nonatomic) BOOL enableStandaloneAppStartTracing;
[Export("enableStandaloneAppStartTracing")]
bool EnableStandaloneAppStartTracing { get; set; }

// @property (nonatomic) BOOL enableReportNonFullyBlockingAppHangs;
[Export("enableReportNonFullyBlockingAppHangs")]
bool EnableReportNonFullyBlockingAppHangs { get; set; }
Expand Down Expand Up @@ -2032,9 +2036,9 @@ interface SentryExperimentalOptions
[Export("enableWatchdogTerminationsV2")]
bool EnableWatchdogTerminationsV2 { get; set; }

// @property (nonatomic) BOOL enableStandaloneAppStartTracing;
[Export("enableStandaloneAppStartTracing")]
bool EnableStandaloneAppStartTracing { get; set; }
// @property (nonatomic) BOOL enableUIViewControllerInitSwizzling;
[Export("enableUIViewControllerInitSwizzling")]
bool EnableUIViewControllerInitSwizzling { get; set; }
}

// @interface SentryFeedback : NSObject
Expand Down Expand Up @@ -2804,18 +2808,6 @@ interface SentryScreenFrames
nuint Hash { get; }
}

// @protocol SentryViewScreenshotProvider <NSObject>
[Protocol(Name = "_TtP6Sentry28SentryViewScreenshotProvider_")]
[BaseType(typeof(NSObject), Name = "_TtP6Sentry28SentryViewScreenshotProvider_")]
[Internal]
interface SentryViewScreenshotProvider
{
// @required -(void)imageWithView:(UIView * _Nonnull)view onComplete:(void (^ _Nonnull)(UIImage * _Nonnull))onComplete;
[Abstract]
[Export("imageWithView:onComplete:")]
void OnComplete(UIView view, Action<UIImage> onComplete);
}

// @interface SentryViewScreenshotOptions : NSObject <SentryRedactOptions>
[BaseType(typeof(NSObject), Name = "_TtC6Sentry27SentryViewScreenshotOptions")]
[Internal]
Expand Down Expand Up @@ -2867,6 +2859,18 @@ interface SentryViewScreenshotOptions : SentryRedactOptions
NativeHandle Constructor(bool enableViewRendererV2, bool enableFastViewRendering, bool maskAllText, bool maskAllImages, Class[] maskedViewClasses, Class[] unmaskedViewClasses, NSSet<NSString> excludedViewClasses, NSSet<NSString> includedViewClasses);
}

// @protocol SentryViewScreenshotProvider <NSObject>
[Protocol(Name = "_TtP6Sentry28SentryViewScreenshotProvider_")]
[BaseType(typeof(NSObject), Name = "_TtP6Sentry28SentryViewScreenshotProvider_")]
[Internal]
interface SentryViewScreenshotProvider
{
// @required -(void)imageWithView:(UIView * _Nonnull)view onComplete:(void (^ _Nonnull)(UIImage * _Nonnull))onComplete;
[Abstract]
[Export("imageWithView:onComplete:")]
void OnComplete(UIView view, Action<UIImage> onComplete);
}

// @interface SentryObjCSDK : NSObject
[BaseType(typeof(NSObject))]
[Internal]
Expand Down
Loading