Address review comments

pull/7735/head
Yuchen Zeng 8 years ago
parent 2bf9913323
commit 25aa88af94
  1. 2
      test/cpp/util/cli_credentials.h
  2. 6
      test/cpp/util/proto_file_parser.h

@ -42,7 +42,7 @@ namespace testing {
class CliCredentials {
public:
virtual ~CliCredentials(){};
virtual ~CliCredentials() {}
virtual std::shared_ptr<grpc::ChannelCredentials> GetCredentials() const;
virtual const grpc::string GetCredentialUsage() const;
};

@ -51,9 +51,9 @@ class ProtoFileParser {
// The parser will search proto files using the server reflection service
// provided on the given channel. The given protofiles in a source tree rooted
// from proto_path will also be searched.
explicit ProtoFileParser(std::shared_ptr<grpc::Channel> channel,
const grpc::string& proto_path,
const grpc::string& protofiles);
ProtoFileParser(std::shared_ptr<grpc::Channel> channel,
const grpc::string& proto_path,
const grpc::string& protofiles);
~ProtoFileParser();

Loading…
Cancel
Save