From 454098c2f508505fc55c60c577250b8610abaaf3 Mon Sep 17 00:00:00 2001 From: lpw <pengwei.li@gamehollywood.com> Date: Tue, 26 Jan 2021 09:39:45 +0800 Subject: [PATCH] 3.9.2 --- frameworks/GoogleUtilities.framework/Headers/GULURLSessionDataResponse.h | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/frameworks/GoogleDataTransport.framework/Headers/GDTCORReachability.h b/frameworks/GoogleUtilities.framework/Headers/GULURLSessionDataResponse.h similarity index 63% rename from frameworks/GoogleDataTransport.framework/Headers/GDTCORReachability.h rename to frameworks/GoogleUtilities.framework/Headers/GULURLSessionDataResponse.h index 840f02a..e88eb67 100644 --- a/frameworks/GoogleDataTransport.framework/Headers/GDTCORReachability.h +++ b/frameworks/GoogleUtilities.framework/Headers/GULURLSessionDataResponse.h @@ -1,5 +1,5 @@ /* - * Copyright 2019 Google + * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,15 +16,15 @@ #import <Foundation/Foundation.h> -#import "GDTCORPlatform.h" - NS_ASSUME_NONNULL_BEGIN -/** This class helps determine upload conditions by determining connectivity. */ -@interface GDTCORReachability : NSObject +/** The class represents HTTP response received from `NSURLSession`. */ +@interface GULURLSessionDataResponse : NSObject -/** The current set flags indicating network conditions */ -+ (GDTCORNetworkReachabilityFlags)currentFlags; +@property(nonatomic, readonly) NSHTTPURLResponse *HTTPResponse; +@property(nonatomic, nullable, readonly) NSData *HTTPBody; + +- (instancetype)initWithResponse:(NSHTTPURLResponse *)response HTTPBody:(nullable NSData *)body; @end -- Gitblit v1.8.0