Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(608)

Unified Diff: ios/public/provider/chrome/browser/signin/chrome_identity_interaction_manager.mm

Issue 2110183006: Introduce reauthenticateUserWithID:email:callback: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Better parameters name Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/public/provider/chrome/browser/signin/chrome_identity_interaction_manager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/public/provider/chrome/browser/signin/chrome_identity_interaction_manager.mm
diff --git a/ios/public/provider/chrome/browser/signin/chrome_identity_interaction_manager.mm b/ios/public/provider/chrome/browser/signin/chrome_identity_interaction_manager.mm
index 96235a7bf60ee7b61ed86e699e1640a0f7e6a0e2..36afe8447214b135d0b75694b63784b522b70b0b 100644
--- a/ios/public/provider/chrome/browser/signin/chrome_identity_interaction_manager.mm
+++ b/ios/public/provider/chrome/browser/signin/chrome_identity_interaction_manager.mm
@@ -31,6 +31,13 @@
completion(nil, nil);
}
+- (void)reauthenticateUserWithID:(NSString*)userID
+ email:(NSString*)userEmail
+ completion:(SigninCompletionCallback)completion {
+ NOTREACHED() << "Subclasses must override this";
+ completion(nil, nil);
+}
+
- (void)reauthenticateUserWithEmail:(NSString*)email
completion:(SigninCompletionCallback)completion {
NOTREACHED() << "Subclasses must override this";
« no previous file with comments | « ios/public/provider/chrome/browser/signin/chrome_identity_interaction_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698