aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/GRPCCall+Cronet.h
diff options
context:
space:
mode:
authorGravatar Garrett Casto <gcasto@chromium.org>2016-11-07 20:36:31 -0800
committerGravatar Garrett Casto <gcasto@chromium.org>2016-11-28 10:35:43 -0800
commita0ed373d3cb6d93b55ebe753b276c2ddf1fc7b65 (patch)
treea01e1a41d1b19f9472ae8f5280c72442e6d11bb8 /src/objective-c/GRPCClient/GRPCCall+Cronet.h
parentc02cee839892ad7f5c3e8bac0894224ee5d226e8 (diff)
Change interface
Diffstat (limited to 'src/objective-c/GRPCClient/GRPCCall+Cronet.h')
-rw-r--r--src/objective-c/GRPCClient/GRPCCall+Cronet.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/objective-c/GRPCClient/GRPCCall+Cronet.h b/src/objective-c/GRPCClient/GRPCCall+Cronet.h
index 2d8f7ac8fb..b9d286c929 100644
--- a/src/objective-c/GRPCClient/GRPCCall+Cronet.h
+++ b/src/objective-c/GRPCClient/GRPCCall+Cronet.h
@@ -43,13 +43,13 @@
/**
* This method should be called before issuing the first RPC. It should be
* called only once. Create an instance of Cronet engine in your app elsewhere
- * and pass the instance pointer in the cronet_engine parameter. Once set,
+ * and pass the instance pointer in the stream_engine parameter. Once set,
* all subsequent RPCs will use Cronet transport. The method is not thread
* safe.
*/
-+(void)useCronetWithEngine:(cronet_engine *)engine;
++(void)useCronetWithEngine:(stream_engine *)engine;
-+(cronet_engine *)cronetEngine;
++(stream_engine *)cronetEngine;
+(BOOL)isUsingCronet;