| Index: third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.cpp
|
| diff --git a/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.cpp b/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.cpp
|
| index bdef3f81dddfcd0b4a9de0aa92c5e9429a06c6fd..d4e555ebbb557e046ab38724366b7c1f2eacdd8b 100644
|
| --- a/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.cpp
|
| +++ b/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.cpp
|
| @@ -123,14 +123,14 @@ BroadcastChannel::BroadcastChannel(ExecutionContext* executionContext, const Str
|
| // Local BroadcastChannelClient for messages send from the browser to this channel.
|
| webmessaging::mojom::blink::BroadcastChannelClientAssociatedPtrInfo localClientInfo;
|
| m_binding.Bind(&localClientInfo, provider.associated_group());
|
| - m_binding.set_connection_error_handler(createBaseCallback(WTF::bind(&BroadcastChannel::onError, wrapWeakPersistent(this))));
|
| + m_binding.set_connection_error_handler(convertToBaseCallback(WTF::bind(&BroadcastChannel::onError, wrapWeakPersistent(this))));
|
|
|
| // Remote BroadcastChannelClient for messages send from this channel to the browser.
|
| webmessaging::mojom::blink::BroadcastChannelClientAssociatedPtrInfo remoteClientInfo;
|
| mojo::AssociatedInterfaceRequest<webmessaging::mojom::blink::BroadcastChannelClient> remoteCientRequest;
|
| provider.associated_group()->CreateAssociatedInterface(mojo::AssociatedGroup::WILL_PASS_REQUEST, &remoteClientInfo, &remoteCientRequest);
|
| m_remoteClient.Bind(std::move(remoteClientInfo));
|
| - m_remoteClient.set_connection_error_handler(createBaseCallback(WTF::bind(&BroadcastChannel::onError, wrapWeakPersistent(this))));
|
| + m_remoteClient.set_connection_error_handler(convertToBaseCallback(WTF::bind(&BroadcastChannel::onError, wrapWeakPersistent(this))));
|
|
|
| provider->ConnectToChannel(m_origin, m_name, std::move(localClientInfo), std::move(remoteCientRequest));
|
| }
|
|
|