diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-04-22 07:56:09 -0700 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-04-22 07:56:09 -0700 |
commit | 77979b08607a1e408fdbd8b0445dee3667742161 (patch) | |
tree | 8508e9e4ec5b2887aee9c6e1c0d8ce48392a3262 /src/objective-c/GRPCClient | |
parent | 58ce3f0e37f5dc0f525fe7ec007f12f1fc91ebeb (diff) | |
parent | 48b02ecc14dfd6c3ba1a90a90ba41df856c0786b (diff) |
Merge branch 'batch-metadata' of github.com:ctiller/grpc into one-pass
Conflicts:
src/core/channel/http_client_filter.c
src/core/channel/http_server_filter.c
Diffstat (limited to 'src/objective-c/GRPCClient')
-rw-r--r-- | src/objective-c/GRPCClient/GRPCCall.h | 2 | ||||
-rw-r--r-- | src/objective-c/GRPCClient/GRPCCall.m | 4 | ||||
-rw-r--r-- | src/objective-c/GRPCClient/GRPCClient.podspec | 14 | ||||
-rw-r--r-- | src/objective-c/GRPCClient/private/GRPCChannel.m | 2 | ||||
-rw-r--r-- | src/objective-c/GRPCClient/private/GRPCCompletionQueue.m | 2 | ||||
-rw-r--r-- | src/objective-c/GRPCClient/private/GRPCDelegateWrapper.m | 2 | ||||
-rw-r--r-- | src/objective-c/GRPCClient/private/NSData+GRPC.m | 2 |
7 files changed, 7 insertions, 21 deletions
diff --git a/src/objective-c/GRPCClient/GRPCCall.h b/src/objective-c/GRPCClient/GRPCCall.h index 3a18db6137..81b409b9ff 100644 --- a/src/objective-c/GRPCClient/GRPCCall.h +++ b/src/objective-c/GRPCClient/GRPCCall.h @@ -32,7 +32,7 @@ */ #import <Foundation/Foundation.h> -#import <RxLibrary/GRXWriter.h> +#import <gRPC/GRXWriter.h> @class GRPCMethodName; diff --git a/src/objective-c/GRPCClient/GRPCCall.m b/src/objective-c/GRPCClient/GRPCCall.m index f246b81e63..989ce390e2 100644 --- a/src/objective-c/GRPCClient/GRPCCall.m +++ b/src/objective-c/GRPCClient/GRPCCall.m @@ -33,8 +33,8 @@ #import "GRPCCall.h" -#include <grpc.h> -#include <support/time.h> +#include <grpc/grpc.h> +#include <grpc/support/grpc_time.h> #import "GRPCMethodName.h" #import "private/GRPCChannel.h" diff --git a/src/objective-c/GRPCClient/GRPCClient.podspec b/src/objective-c/GRPCClient/GRPCClient.podspec deleted file mode 100644 index a34c50b54e..0000000000 --- a/src/objective-c/GRPCClient/GRPCClient.podspec +++ /dev/null @@ -1,14 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'GRPCClient' - s.version = '0.0.1' - s.summary = 'Generic gRPC client library for iOS' - s.author = { - 'Jorge Canizales' => 'jcanizales@google.com' - } - s.source_files = '*.{h,m}', 'private/*.{h,m}' - s.private_header_files = 'private/*.h' - s.platform = :ios - s.ios.deployment_target = '6.0' - s.requires_arc = true - s.dependency 'RxLibrary', '~> 0.0' -end diff --git a/src/objective-c/GRPCClient/private/GRPCChannel.m b/src/objective-c/GRPCClient/private/GRPCChannel.m index c8fa69ef91..7ddc01dc24 100644 --- a/src/objective-c/GRPCClient/private/GRPCChannel.m +++ b/src/objective-c/GRPCClient/private/GRPCChannel.m @@ -33,7 +33,7 @@ #import "GRPCChannel.h" -#import <grpc.h> +#import <grpc/grpc.h> @implementation GRPCChannel diff --git a/src/objective-c/GRPCClient/private/GRPCCompletionQueue.m b/src/objective-c/GRPCClient/private/GRPCCompletionQueue.m index bc2a824a6b..b98e8ea439 100644 --- a/src/objective-c/GRPCClient/private/GRPCCompletionQueue.m +++ b/src/objective-c/GRPCClient/private/GRPCCompletionQueue.m @@ -33,7 +33,7 @@ #import "GRPCCompletionQueue.h" -#import <grpc.h> +#import <grpc/grpc.h> @implementation GRPCCompletionQueue diff --git a/src/objective-c/GRPCClient/private/GRPCDelegateWrapper.m b/src/objective-c/GRPCClient/private/GRPCDelegateWrapper.m index 2a3a50f763..ac444ef406 100644 --- a/src/objective-c/GRPCClient/private/GRPCDelegateWrapper.m +++ b/src/objective-c/GRPCClient/private/GRPCDelegateWrapper.m @@ -33,7 +33,7 @@ #import "GRPCDelegateWrapper.h" -#import <RxLibrary/GRXWriteable.h> +#import <gRPC/GRXWriteable.h> @interface GRPCDelegateWrapper () // These are atomic so that cancellation can nillify them from any thread. diff --git a/src/objective-c/GRPCClient/private/NSData+GRPC.m b/src/objective-c/GRPCClient/private/NSData+GRPC.m index f885e9db9c..5ab16d9d34 100644 --- a/src/objective-c/GRPCClient/private/NSData+GRPC.m +++ b/src/objective-c/GRPCClient/private/NSData+GRPC.m @@ -33,7 +33,7 @@ #import "NSData+GRPC.h" -#include <byte_buffer.h> +#include <grpc/byte_buffer.h> #include <string.h> // TODO(jcanizales): Move these two incantations to the C library. |