| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- // Copyright 2021 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #import <TargetConditionals.h>
- #if TARGET_OS_IOS
- #import "GoogleSignIn/Sources/GIDMDMPasscodeState.h"
- #import "GoogleSignIn/Sources/GIDMDMPasscodeState_Private.h"
- #import <Foundation/Foundation.h>
- #import "GoogleSignIn/Sources/GIDMDMPasscodeCache.h"
- NS_ASSUME_NONNULL_BEGIN
- @implementation GIDMDMPasscodeState
- - (instancetype)initWithStatus:(NSString *)status info:(NSString *)info {
- self = [super init];
- if (self) {
- _status = [status copy];
- _info = [info copy];
- }
- return self;
- }
- + (instancetype)passcodeState {
- #if DEBUG
- NSDate *start = [NSDate date];
- #endif
- GIDMDMPasscodeState *passcodeState = [[GIDMDMPasscodeCache sharedInstance] passcodeState];
- #if DEBUG
- NSTimeInterval timeElapsed = [[NSDate date] timeIntervalSinceDate:start];
- NSLog(@"Retrieved device passcode state in %dms.", (int)round(timeElapsed * 1000));
- #endif
- return passcodeState;
- }
- @end
- NS_ASSUME_NONNULL_END
- #endif
|