| 65 | // implements Service ---------------------------------------------- |
| 66 | |
| 67 | void CallMethod(const ::google::protobuf::MethodDescriptor*, |
| 68 | ::google::protobuf::RpcController* controller, |
| 69 | const ::google::protobuf::Message* request, |
| 70 | ::google::protobuf::Message* response, |
| 71 | ::google::protobuf::Closure* done) override { |
| 72 | ProcessRpcRequest((Controller*)controller, |
| 73 | (const SerializedRequest*)request, |
| 74 | (SerializedResponse*)response, done); |
| 75 | } |
| 76 | |
| 77 | const ::google::protobuf::ServiceDescriptor* GetDescriptor() override { |
| 78 | return BaiduMasterServiceBase::descriptor(); |
nothing calls this directly
no test coverage detected