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
6 changes: 5 additions & 1 deletion FirebaseAuth/Sources/Auth/FIRAuth.m
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
#import "FirebaseAuth/Sources/Auth/FIRAuthDataResult_Internal.h"
#import "FirebaseAuth/Sources/Auth/FIRAuthDispatcher.h"
#import "FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.h"
#import "FirebaseAuth/Sources/Backend/FIRAuthBackend.h"
#import "FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.h"
#import "FirebaseAuth/Sources/User/FIRUser_Internal.h"
#import "FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.h"
Expand Down Expand Up @@ -1613,6 +1612,9 @@ - (void)scene:(UIScene *)scene
#pragma mark - Internal Methods

#if TARGET_OS_IOS
typedef void (^FIRVerifyPhoneNumberResponseCallback)(
FIRVerifyPhoneNumberResponse *_Nullable response, NSError *_Nullable error);

/** @fn signInWithPhoneCredential:callback:
@brief Signs in using a phone credential.
@param credential The Phone Auth credential used to sign in.
Expand Down Expand Up @@ -1700,6 +1702,8 @@ - (void)internalSignInAndRetrieveDataWithCustomToken:(NSString *)token
}];
}

typedef void (^FIRSignupNewUserCallback)(FIRSignUpNewUserResponse *_Nullable response,
NSError *_Nullable error);
/** @fn internalCreateUserWithEmail:password:completion:
@brief Makes a backend request attempting to create a new Firebase user given an email address
and password.
Expand Down
141 changes: 0 additions & 141 deletions FirebaseAuth/Sources/Backend/FIRAuthBackend.h

This file was deleted.

Loading