diff options
author | Jorge Canizales <jcanizales@google.com> | 2015-05-16 12:11:35 -0700 |
---|---|---|
committer | Jorge Canizales <jcanizales@google.com> | 2015-05-17 16:21:20 -0700 |
commit | 44fb295d9f7e39bf0b4874666fec940d5f38ec9a (patch) | |
tree | 3f0b6d2ea6be145c4a775f2e971314291c6c9008 /src/objective-c/ProtoRPC | |
parent | 206e75b66cc097a31997ba61b9eb639cd5f1454d (diff) |
Move our runtime to proto3 and make the dependency explicit
Diffstat (limited to 'src/objective-c/ProtoRPC')
-rw-r--r-- | src/objective-c/ProtoRPC/ProtoRPC.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/objective-c/ProtoRPC/ProtoRPC.m b/src/objective-c/ProtoRPC/ProtoRPC.m index 6520b3af59..c5051c0123 100644 --- a/src/objective-c/ProtoRPC/ProtoRPC.m +++ b/src/objective-c/ProtoRPC/ProtoRPC.m @@ -36,7 +36,7 @@ #import <gRPC/GRXWriteable.h> #import <gRPC/GRXWriter.h> #import <gRPC/GRXWriter+Transformations.h> -#import <ProtocolBuffers/ProtocolBuffers.h> +#import <Protobuf/GPBProtocolBuffers.h> @implementation ProtoRPC { id<GRXWriteable> _responseWriteable; @@ -65,7 +65,7 @@ } // A writer that serializes the proto messages to send. id<GRXWriter> bytesWriter = - [[[GRXWriter alloc] initWithWriter:requestsWriter] map:^id(PBGeneratedMessage *proto) { + [[[GRXWriter alloc] initWithWriter:requestsWriter] map:^id(GPBMessage *proto) { return [proto data]; }]; if ((self = [super initWithHost:host method:method requestsWriter:bytesWriter])) { |