| Index: mojo/public/cpp/bindings/tests/wtf_types_unittest.cc
|
| diff --git a/mojo/public/cpp/bindings/tests/wtf_types_unittest.cc b/mojo/public/cpp/bindings/tests/wtf_types_unittest.cc
|
| index 16b36d31cc5f5afd0dace363fb55dbd154de60bb..cc2963a5ecdf53022c5b79a6f1a5dbe98380d116 100644
|
| --- a/mojo/public/cpp/bindings/tests/wtf_types_unittest.cc
|
| +++ b/mojo/public/cpp/bindings/tests/wtf_types_unittest.cc
|
| @@ -253,7 +253,7 @@ TEST_F(WTFTypesTest, Serialization_PublicAPI) {
|
|
|
| TEST_F(WTFTypesTest, SendString) {
|
| blink::TestWTFPtr ptr;
|
| - TestWTFImpl impl(ConvertInterfaceRequest<TestWTF>(GetProxy(&ptr)));
|
| + TestWTFImpl impl(ConvertInterfaceRequest<TestWTF>(MakeRequest(&ptr)));
|
|
|
| WTF::Vector<WTF::String> strs = ConstructStringArray();
|
|
|
| @@ -272,7 +272,7 @@ TEST_F(WTFTypesTest, SendString) {
|
|
|
| TEST_F(WTFTypesTest, SendStringArray) {
|
| blink::TestWTFPtr ptr;
|
| - TestWTFImpl impl(ConvertInterfaceRequest<TestWTF>(GetProxy(&ptr)));
|
| + TestWTFImpl impl(ConvertInterfaceRequest<TestWTF>(MakeRequest(&ptr)));
|
|
|
| WTF::Optional<WTF::Vector<WTF::String>> arrs[3];
|
| // arrs[0] is empty.
|
| @@ -298,7 +298,7 @@ TEST_F(WTFTypesTest, SendStringArray) {
|
|
|
| TEST_F(WTFTypesTest, SendStringMap) {
|
| blink::TestWTFPtr ptr;
|
| - TestWTFImpl impl(ConvertInterfaceRequest<TestWTF>(GetProxy(&ptr)));
|
| + TestWTFImpl impl(ConvertInterfaceRequest<TestWTF>(MakeRequest(&ptr)));
|
|
|
| WTF::Optional<WTF::HashMap<WTF::String, WTF::String>> maps[3];
|
| // maps[0] is empty.
|
|
|