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 FirebaseUI/Auth/AuthUI/Source/FIRAuthProviderUI.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ typedef void (^FIRAuthProviderSignInCompletionBlock)(FIRAuthCredential *_Nullabl
@param sourceApplication The application which tried opening the URL.
@return YES if your auth provider handled the URL. NO otherwise.
*/
- (BOOL)handleOpenURL:(NSURL *)URL sourceApplication:(NSString *)sourceApplication;
- (BOOL)handleOpenURL:(NSURL *)URL sourceApplication:(nullable NSString *)sourceApplication;

@end

Expand Down
6 changes: 2 additions & 4 deletions FirebaseUI/Auth/AuthUI/Source/FIRAuthUI.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ typedef void (^FIRAuthUIResultCallback)(FIRUser *_Nullable user, NSError *_Nulla
@param user The signed in user if the sign in attempt was successful.
@param error The error that occured during sign in, if any.
*/
- (void)authUI:(FIRAuthUI *)authUI
didSignInWithUser:(nullable FIRUser *)user
error:(nullable NSError *)error;
- (void)authUI:(FIRAuthUI *)authUI didSignInWithUser:(nullable FIRUser *)user error:(nullable NSError *)error;

@optional

Expand Down Expand Up @@ -126,7 +124,7 @@ typedef void (^FIRAuthUIResultCallback)(FIRUser *_Nullable user, NSError *_Nulla
@return YES if Firebase Auth UI handled the URL. NO otherwise.
*/
- (BOOL)handleOpenURL:(NSURL *)URL
sourceApplication:(NSString *)sourceApplication;
sourceApplication:(nullable NSString *)sourceApplication;

/** @fn authViewController
@brief Returns an instance of the initial view controller of AuthUI.
Expand Down