| Index: content/browser/navigator_connect/service_port_service_impl.cc
|
| diff --git a/content/browser/navigator_connect/service_port_service_impl.cc b/content/browser/navigator_connect/service_port_service_impl.cc
|
| index c8847a7f5b4413156a1d1f859ba395051f97a3c9..6b57df5ca8a2567c2b0309c85f2f7ed77bb0fb72 100644
|
| --- a/content/browser/navigator_connect/service_port_service_impl.cc
|
| +++ b/content/browser/navigator_connect/service_port_service_impl.cc
|
| @@ -52,7 +52,7 @@ void ServicePortServiceImpl::PostMessageToClient(
|
| std::vector<int> new_routing_ids;
|
| message_port_message_filter_->UpdateMessagePortsWithNewRoutes(
|
| sent_message_ports, &new_routing_ids);
|
| - client_->PostMessage(
|
| + client_->PostMessageToPort(
|
| port_id, mojo::String::From(message.message_as_string),
|
| mojo::Array<MojoTransferredMessagePortPtr>::From(sent_message_ports),
|
| mojo::Array<int32_t>::From(new_routing_ids));
|
| @@ -94,7 +94,7 @@ void ServicePortServiceImpl::Connect(const mojo::String& target_url,
|
| weak_ptr_factory_.GetWeakPtr(), callback));
|
| }
|
|
|
| -void ServicePortServiceImpl::PostMessage(
|
| +void ServicePortServiceImpl::PostMessageToPort(
|
| int32_t port_id,
|
| const mojo::String& message,
|
| mojo::Array<MojoTransferredMessagePortPtr> ports) {
|
|
|