aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/util/grpc_tool.h
diff options
context:
space:
mode:
authorGravatar Yuchen Zeng <zyc@google.com>2016-07-25 14:38:07 -0700
committerGravatar Yuchen Zeng <zyc@google.com>2016-07-25 14:38:07 -0700
commit28263275f0ab22d5a9d01f7e5afddbcc24a9d22c (patch)
tree7727bcff3b242aeb7044d1bd15557135d1fe9428 /test/cpp/util/grpc_tool.h
parent29ca79be8939c0386f1c7b17ba66cc3b105c7fc1 (diff)
Remove unnecessary dependencies
Diffstat (limited to 'test/cpp/util/grpc_tool.h')
-rw-r--r--test/cpp/util/grpc_tool.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/test/cpp/util/grpc_tool.h b/test/cpp/util/grpc_tool.h
index d779737cd5..9e61abf641 100644
--- a/test/cpp/util/grpc_tool.h
+++ b/test/cpp/util/grpc_tool.h
@@ -31,17 +31,16 @@
*
*/
+#include <grpc++/support/config.h>
#include <functional>
-#include <string>
-
-#include <gflags/gflags.h>
namespace grpc {
namespace testing {
-typedef std::function<bool(const std::string &)> OutputCallback;
+typedef std::function<bool(const grpc::string &)> GrpcToolOutputCallback;
-int GrpcToolMainLib(int argc, const char **argv, OutputCallback callback);
+int GrpcToolMainLib(int argc, const char **argv,
+ GrpcToolOutputCallback callback);
} // namespace testing
} // namespace grpc