| Index: mojo/edk/js/tests/js_to_cpp_tests.cc
|
| diff --git a/mojo/edk/js/tests/js_to_cpp_tests.cc b/mojo/edk/js/tests/js_to_cpp_tests.cc
|
| index b4bddcbbc590ea57158df97b59a5063eb3f33a83..cfd9d646303ef6bbe3305f7c073599871f95ba31 100644
|
| --- a/mojo/edk/js/tests/js_to_cpp_tests.cc
|
| +++ b/mojo/edk/js/tests/js_to_cpp_tests.cc
|
| @@ -388,11 +388,11 @@ class JsToCppTest : public testing::Test {
|
| cpp_side->set_run_loop(&run_loop_);
|
|
|
| js_to_cpp::JsSidePtr js_side;
|
| - auto js_side_proxy = GetProxy(&js_side);
|
| + auto js_side_proxy = MakeRequest(&js_side);
|
|
|
| cpp_side->set_js_side(js_side.get());
|
| js_to_cpp::CppSidePtr cpp_side_ptr;
|
| - cpp_side->Bind(GetProxy(&cpp_side_ptr));
|
| + cpp_side->Bind(MakeRequest(&cpp_side_ptr));
|
|
|
| js_side->SetCppSide(std::move(cpp_side_ptr));
|
|
|
|
|