aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/qps_worker.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-11-08 14:44:23 +0000
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-11-08 14:44:23 +0000
commit83e73373cb63be5ec5a97d894e7a06faf81d3df8 (patch)
treef8b9da29da1c70c05a120c43448b0e9685716f97 /test/cpp/qps/qps_worker.h
parent79e32519393645c382eab2e4ad795f324d1a777d (diff)
parentbd50ed8057aa9823a0fd4d0b6d5b1722c199a70d (diff)
Merge branch 'new_op' into hpack_fix
Diffstat (limited to 'test/cpp/qps/qps_worker.h')
-rw-r--r--test/cpp/qps/qps_worker.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/cpp/qps/qps_worker.h b/test/cpp/qps/qps_worker.h
index 861588907e..0db88ad3d1 100644
--- a/test/cpp/qps/qps_worker.h
+++ b/test/cpp/qps/qps_worker.h
@@ -42,15 +42,15 @@ class Server;
namespace testing {
-class WorkerImpl;
+class WorkerServiceImpl;
class QpsWorker {
public:
- QpsWorker(int driver_port, int server_port);
+ explicit QpsWorker(int driver_port);
~QpsWorker();
private:
- std::unique_ptr<WorkerImpl> impl_;
+ std::unique_ptr<WorkerServiceImpl> impl_;
std::unique_ptr<Server> server_;
};