| Index: mojo/public/cpp/bindings/tests/bindings_perftest.cc
|
| diff --git a/mojo/public/cpp/bindings/tests/bindings_perftest.cc b/mojo/public/cpp/bindings/tests/bindings_perftest.cc
|
| index 0da5af69456d625ccb3cd1c6a6efd801d1d6653e..44fa8e3bacae30d807f99ffc207fe072e9f9ffd9 100644
|
| --- a/mojo/public/cpp/bindings/tests/bindings_perftest.cc
|
| +++ b/mojo/public/cpp/bindings/tests/bindings_perftest.cc
|
| @@ -86,9 +86,7 @@ void PingPongTest::OnPingDone() {
|
| }
|
|
|
| struct BoundPingService {
|
| - BoundPingService() : binding(&impl) {
|
| - binding.Bind(GetProxy(&service));
|
| - }
|
| + BoundPingService() : binding(&impl) { binding.Bind(MakeRequest(&service)); }
|
|
|
| PingServiceImpl impl;
|
| test::PingServicePtr service;
|
| @@ -106,7 +104,7 @@ class MojoBindingsPerftest : public testing::Test {
|
| TEST_F(MojoBindingsPerftest, InProcessPingPong) {
|
| test::PingServicePtr service;
|
| PingServiceImpl impl;
|
| - Binding<test::PingService> binding(&impl, GetProxy(&service));
|
| + Binding<test::PingService> binding(&impl, MakeRequest(&service));
|
| PingPongTest test(std::move(service));
|
|
|
| {
|
|
|