| Index: content/renderer/presentation/presentation_dispatcher.cc
|
| diff --git a/content/renderer/presentation/presentation_dispatcher.cc b/content/renderer/presentation/presentation_dispatcher.cc
|
| index 1299a45e107df015ec592635507dd02a293c60d4..325cac65c7892474fdff2f974d21d4bd3557c4bf 100644
|
| --- a/content/renderer/presentation/presentation_dispatcher.cc
|
| +++ b/content/renderer/presentation/presentation_dispatcher.cc
|
| @@ -45,7 +45,8 @@ blink::WebPresentationError::ErrorType GetWebPresentationErrorTypeFromMojo(
|
| blink::WebPresentationConnectionState GetWebPresentationConnectionStateFromMojo(
|
| blink::mojom::PresentationConnectionState mojoSessionState) {
|
| switch (mojoSessionState) {
|
| - // TODO(imcheng): Add Connecting state to Blink (crbug.com/575351).
|
| + case blink::mojom::PresentationConnectionState::CONNECTING:
|
| + return blink::WebPresentationConnectionState::Connecting;
|
| case blink::mojom::PresentationConnectionState::CONNECTED:
|
| return blink::WebPresentationConnectionState::Connected;
|
| case blink::mojom::PresentationConnectionState::CLOSED:
|
|
|