blob: cabc03bed1d0c2cfc7dd743934945cad6f9eb088 [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/chrome/browser/ui/authentication/signin/signin_constants.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
NSString* const kUserSigninAttemptedNotification = @"kUserSigninAttempted";
NSString* const kSkipSigninAccessibilityIdentifier =
@"kSkipSigninAccessibilityIdentifier";
@implementation SigninCompletionInfo
- (instancetype)initWithIdentity:(ChromeIdentity*)identity
signinCompletionAction:
(SigninCompletionAction)signinCompletionAction {
self = [super init];
if (self) {
_identity = identity;
_signinCompletionAction = signinCompletionAction;
}
return self;
}
@end