Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Unified Diff: third_party/WebKit/Source/platform/mojo/CommonCustomTypesStructTraitsTest.cpp

Issue 2589663003: mojo:: Rename mojo::GetProxy() to mojo::MakeRequest() (Closed)
Patch Set: Rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698