Skip to content

Commit

Permalink
[ReplayKit] Use protocols instead of models in API. (#807)
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfbjarne authored and spouliot committed Sep 9, 2016
1 parent c914bbc commit 6c3fee4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/replaykit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ interface RPBroadcastControllerDelegate {
void DidFinish (RPBroadcastController broadcastController, [NullAllowed] NSError error);

[Export ("broadcastController:didUpdateServiceInfo:")]
void DidUpdateServiceInfo (RPBroadcastController broadcastController, NSDictionary<NSString, NSCoding> serviceInfo);
void DidUpdateServiceInfo (RPBroadcastController broadcastController, NSDictionary<NSString, INSCoding> serviceInfo);
}

[iOS (10,0)]
Expand All @@ -219,7 +219,7 @@ interface NSExtensionContext_RPBroadcastExtension {
void LoadBroadcastingApplicationInfo (LoadBroadcastingHandler handler);

[Export ("completeRequestWithBroadcastURL:broadcastConfiguration:setupInfo:")]
void CompleteRequest (NSUrl broadcastURL, RPBroadcastConfiguration broadcastConfiguration, [NullAllowed] NSDictionary<NSString, NSCoding> setupInfo);
void CompleteRequest (NSUrl broadcastURL, RPBroadcastConfiguration broadcastConfiguration, [NullAllowed] NSDictionary<NSString, INSCoding> setupInfo);
}

[iOS (10,0)]
Expand Down

0 comments on commit 6c3fee4

Please sign in to comment.