| Index: third_party/WebKit/Source/platform/mojo/CommonCustomTypesStructTraitsTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/mojo/CommonCustomTypesStructTraitsTest.cpp b/third_party/WebKit/Source/platform/mojo/CommonCustomTypesStructTraitsTest.cpp
|
| index f208d995df1cf793fadda151ce2b6791053c81a4..80e358888c8daf9068256cb3e162cebe9b503aeb 100644
|
| --- a/third_party/WebKit/Source/platform/mojo/CommonCustomTypesStructTraitsTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/mojo/CommonCustomTypesStructTraitsTest.cpp
|
| @@ -44,7 +44,7 @@ class CommonCustomTypesStructTraitsTest : public testing::Test {
|
|
|
| TEST_F(CommonCustomTypesStructTraitsTest, String16) {
|
| mojo::common::test::blink::TestString16Ptr ptr;
|
| - TestString16Impl impl(GetProxy(&ptr));
|
| + TestString16Impl impl(MakeRequest(&ptr));
|
|
|
| // |str| is 8-bit.
|
| String str = String::fromUTF8("hello world");
|
| @@ -63,7 +63,7 @@ TEST_F(CommonCustomTypesStructTraitsTest, String16) {
|
|
|
| TEST_F(CommonCustomTypesStructTraitsTest, EmptyString16) {
|
| mojo::common::test::blink::TestString16Ptr ptr;
|
| - TestString16Impl impl(GetProxy(&ptr));
|
| + TestString16Impl impl(MakeRequest(&ptr));
|
|
|
| String str = String::fromUTF8("");
|
| String output;
|
|
|