aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/private/GRPCSecureChannelFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/objective-c/GRPCClient/private/GRPCSecureChannelFactory.h')
-rw-r--r--src/objective-c/GRPCClient/private/GRPCSecureChannelFactory.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCSecureChannelFactory.h b/src/objective-c/GRPCClient/private/GRPCSecureChannelFactory.h
index 588239b706..565f58a4fa 100644
--- a/src/objective-c/GRPCClient/private/GRPCSecureChannelFactory.h
+++ b/src/objective-c/GRPCClient/private/GRPCSecureChannelFactory.h
@@ -23,15 +23,15 @@ NS_ASSUME_NONNULL_BEGIN
@interface GRPCSecureChannelFactory : NSObject<GRPCChannelFactory>
-+ (nullable instancetype)factoryWithPEMRootCertificates:(nullable NSString *)rootCerts
- privateKey:(nullable NSString *)privateKey
- certChain:(nullable NSString *)certChain
++ (instancetype _Nullable)factoryWithPEMRootCertificates:(NSString * _Nullable)rootCerts
+ privateKey:(NSString * _Nullable)privateKey
+ certChain:(NSString * _Nullable)certChain
error:(NSError **)errorPtr;
-- (nullable grpc_channel *)createChannelWithHost:(NSString *)host
- channelArgs:(nullable NSDictionary *)args;
+- (grpc_channel * _Nullable)createChannelWithHost:(NSString *)host
+ channelArgs:(NSDictionary * _Nullable)args;
-- (nullable instancetype)init NS_UNAVAILABLE;
+- (instancetype _Nullable)init NS_UNAVAILABLE;
@end