| Index: ppapi/proxy/ppapi_proxy_test.cc
|
| diff --git a/ppapi/proxy/ppapi_proxy_test.cc b/ppapi/proxy/ppapi_proxy_test.cc
|
| index b75f4b83b19bdd32fe2c55c8f76c0685e3ca0324..2c0b1365d358476568b056a01c5cec0bf67deff9 100644
|
| --- a/ppapi/proxy/ppapi_proxy_test.cc
|
| +++ b/ppapi/proxy/ppapi_proxy_test.cc
|
| @@ -122,13 +122,13 @@ void ProxyTestHarnessBase::RegisterTestInterface(const char* name,
|
| registered_interfaces_[name] = test_interface;
|
| }
|
|
|
| -bool ProxyTestHarnessBase::IsInterfaceSupported(const char* name) {
|
| +bool ProxyTestHarnessBase::SupportsInterface(const char* name) {
|
| sink().ClearMessages();
|
|
|
| // IPC doesn't actually write to this when we send a message manually
|
| // not actually using IPC.
|
| bool unused_result = false;
|
| - PpapiMsg_IsInterfaceSupported msg(name, &unused_result);
|
| + PpapiMsg_SupportsInterface msg(name, &unused_result);
|
| GetDispatcher()->OnMessageReceived(msg);
|
|
|
| const IPC::Message* reply_msg =
|
| @@ -137,8 +137,8 @@ bool ProxyTestHarnessBase::IsInterfaceSupported(const char* name) {
|
| if (!reply_msg)
|
| return false;
|
|
|
| - TupleTypes<PpapiMsg_IsInterfaceSupported::ReplyParam>::ValueTuple reply_data;
|
| - EXPECT_TRUE(PpapiMsg_IsInterfaceSupported::ReadReplyParam(
|
| + TupleTypes<PpapiMsg_SupportsInterface::ReplyParam>::ValueTuple reply_data;
|
| + EXPECT_TRUE(PpapiMsg_SupportsInterface::ReadReplyParam(
|
| reply_msg, &reply_data));
|
|
|
| sink().ClearMessages();
|
|
|