diff options
author | Vijay Pai <vpai@google.com> | 2018-01-25 22:54:02 -0800 |
---|---|---|
committer | Vijay Pai <vpai@google.com> | 2018-01-25 23:06:24 -0800 |
commit | ae376bf9d982892eba5b052b87f88e24b1bb0677 (patch) | |
tree | 3a95b01213391ecd47937a97057afbebc6a8416c /test/core/memory_usage | |
parent | e0adbb6c2e714b06dfa42becae97dfe5ae79d2cb (diff) |
Privatize host_port.h; was not used in any wrapped language implementation
Diffstat (limited to 'test/core/memory_usage')
-rw-r--r-- | test/core/memory_usage/memory_usage_test.cc | 3 | ||||
-rw-r--r-- | test/core/memory_usage/server.cc | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/test/core/memory_usage/memory_usage_test.cc b/test/core/memory_usage/memory_usage_test.cc index fb6d290130..f6316bda0b 100644 --- a/test/core/memory_usage/memory_usage_test.cc +++ b/test/core/memory_usage/memory_usage_test.cc @@ -20,9 +20,10 @@ #include <string.h> #include <grpc/support/alloc.h> -#include <grpc/support/host_port.h> #include <grpc/support/string_util.h> #include <grpc/support/subprocess.h> + +#include "src/core/lib/gpr/host_port.h" #include "src/core/lib/gpr/string.h" #include "test/core/util/port.h" diff --git a/test/core/memory_usage/server.cc b/test/core/memory_usage/server.cc index 60ebcece3e..bca4486163 100644 --- a/test/core/memory_usage/server.cc +++ b/test/core/memory_usage/server.cc @@ -31,9 +31,10 @@ #include <grpc/support/alloc.h> #include <grpc/support/cmdline.h> -#include <grpc/support/host_port.h> #include <grpc/support/log.h> #include <grpc/support/time.h> + +#include "src/core/lib/gpr/host_port.h" #include "test/core/end2end/data/ssl_test_data.h" #include "test/core/util/memory_counters.h" #include "test/core/util/port.h" |