-
Notifications
You must be signed in to change notification settings - Fork 1.7k
replacing Auth by C++ auth implementation #802
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
a47784c
lazy replacing FST(Firebase)CredentialsProvider by (Firebase)Credenti…
zxu123 194f4e1
lazy replacing FSTUser by User
zxu123 fc1bb48
adding error-code parameter to TokenListener
zxu123 20b36c1
actually use const user& instead of pointer; also add an error util
zxu123 5b6cadf
add HashUser and pass into the unordered_map
zxu123 920a679
use User in test
zxu123 443d483
use c++ CredentialsProvider and subclass in test
zxu123 7622e8a
fix unit test
zxu123 c7311e4
use explicit capture in lambda instead of capture all by reference
zxu123 636fd60
cache currentUser explicitly when reset sync engineer test driver
zxu123 f687518
objc object should be captured by value in lambda
zxu123 dc4f02c
replacing Auth/FSTUser by C++ auth implementation
zxu123 b502b8e
address changes
zxu123 bfbb0e2
replacing FSTGetTokenResult by C++ Token implementation
zxu123 a64ca8c
Merge branch 'master' into cpp/port_token
zxu123 9fb7911
address changes
zxu123 4b4992a
Merge branch 'cpp/port_token' into cpp/port_auth
zxu123 26aede3
Merge branch 'master' into cpp/port_auth
zxu123 78388d8
fix unintentional change in merging
zxu123 1b7ca90
Merge branch 'cpp/port_auth' of https://github.com/firebase/firebase-…
zxu123 2bd877d
patch the change in objc Auth up-stream
zxu123 934cef5
somehow, the lambda-version of set-user-change-listener does not work…
zxu123 369f812
address changes
zxu123 6e4fdef
fix another const& v.s. dispatch bug
zxu123 5cb11ca
fix more const& v.s. dispatch bug zxu123 committed
zxu123 6874ddd
Merge branch 'cpp/port_token' into cpp/port_auth
zxu123 4bf88a1
Merge branch 'master' into cpp/port_auth
zxu123 64a2306
fix a bad sync line
zxu123 ded4a11
address changes
zxu123 4bc9ba5
address change
zxu123 8009791
address change
zxu123 29e44f5
Merge branch 'master' into cpp/port_auth
zxu123 3956b10
fix upstream change from merge
zxu123 c4a8336
fix upstream changes
zxu123 8df9ab4
Suggested fixes for cpp/port_auth (#846)
wilhuff 91c5f8e
fix style
zxu123 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
std::move
is defined in<utility>
(IWYU). Unfortunately, the C++ linter doesn't work for Objective-C++ :-(.