| Index: third_party/WebKit/Source/modules/presentation/PresentationReceiver.cpp
|
| diff --git a/third_party/WebKit/Source/modules/presentation/PresentationReceiver.cpp b/third_party/WebKit/Source/modules/presentation/PresentationReceiver.cpp
|
| index a0df1f30b47a01bfe3d4f314a57cf259f4a71293..6d9de1882827f39908a8d667e22907adf3b2b089 100644
|
| --- a/third_party/WebKit/Source/modules/presentation/PresentationReceiver.cpp
|
| +++ b/third_party/WebKit/Source/modules/presentation/PresentationReceiver.cpp
|
| @@ -99,6 +99,12 @@ void PresentationReceiver::TerminateConnection() {
|
| window->close(GetFrame()->GetDocument());
|
| }
|
|
|
| +void PresentationReceiver::RemoveConnection(
|
| + WebPresentationConnection* connection) {
|
| + DCHECK(connection_list_);
|
| + connection_list_->RemoveConnection(connection);
|
| +}
|
| +
|
| void PresentationReceiver::RegisterConnection(
|
| PresentationConnection* connection) {
|
| DCHECK(connection_list_);
|
|
|