| Index: content/browser/presentation/presentation_type_converters.cc
|
| diff --git a/content/browser/presentation/presentation_type_converters.cc b/content/browser/presentation/presentation_type_converters.cc
|
| deleted file mode 100644
|
| index 827897cbeae85d1db838ad13c6c7ce526b0747cc..0000000000000000000000000000000000000000
|
| --- a/content/browser/presentation/presentation_type_converters.cc
|
| +++ /dev/null
|
| @@ -1,59 +0,0 @@
|
| -// Copyright 2015 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "content/browser/presentation/presentation_type_converters.h"
|
| -
|
| -#include "base/logging.h"
|
| -
|
| -namespace content {
|
| -
|
| -blink::mojom::PresentationErrorType PresentationErrorTypeToMojo(
|
| - content::PresentationErrorType input) {
|
| - switch (input) {
|
| - case content::PRESENTATION_ERROR_NO_AVAILABLE_SCREENS:
|
| - return blink::mojom::PresentationErrorType::NO_AVAILABLE_SCREENS;
|
| - case content::PRESENTATION_ERROR_SESSION_REQUEST_CANCELLED:
|
| - return blink::mojom::PresentationErrorType::SESSION_REQUEST_CANCELLED;
|
| - case content::PRESENTATION_ERROR_NO_PRESENTATION_FOUND:
|
| - return blink::mojom::PresentationErrorType::NO_PRESENTATION_FOUND;
|
| - case content::PRESENTATION_ERROR_UNKNOWN:
|
| - return blink::mojom::PresentationErrorType::UNKNOWN;
|
| - }
|
| - NOTREACHED();
|
| - return blink::mojom::PresentationErrorType::UNKNOWN;
|
| -}
|
| -
|
| -blink::mojom::PresentationConnectionState PresentationConnectionStateToMojo(
|
| - content::PresentationConnectionState state) {
|
| - switch (state) {
|
| - case content::PRESENTATION_CONNECTION_STATE_CONNECTING:
|
| - return blink::mojom::PresentationConnectionState::CONNECTING;
|
| - case content::PRESENTATION_CONNECTION_STATE_CONNECTED:
|
| - return blink::mojom::PresentationConnectionState::CONNECTED;
|
| - case content::PRESENTATION_CONNECTION_STATE_CLOSED:
|
| - return blink::mojom::PresentationConnectionState::CLOSED;
|
| - case content::PRESENTATION_CONNECTION_STATE_TERMINATED:
|
| - return blink::mojom::PresentationConnectionState::TERMINATED;
|
| - }
|
| - NOTREACHED();
|
| - return blink::mojom::PresentationConnectionState::TERMINATED;
|
| -}
|
| -
|
| -blink::mojom::PresentationConnectionCloseReason
|
| -PresentationConnectionCloseReasonToMojo(
|
| - content::PresentationConnectionCloseReason reason) {
|
| - switch (reason) {
|
| - case content::PRESENTATION_CONNECTION_CLOSE_REASON_CONNECTION_ERROR:
|
| - return blink::mojom::PresentationConnectionCloseReason::CONNECTION_ERROR;
|
| - case content::PRESENTATION_CONNECTION_CLOSE_REASON_CLOSED:
|
| - return blink::mojom::PresentationConnectionCloseReason::CLOSED;
|
| - case content::PRESENTATION_CONNECTION_CLOSE_REASON_WENT_AWAY:
|
| - return blink::mojom::PresentationConnectionCloseReason::WENT_AWAY;
|
| - }
|
| - NOTREACHED();
|
| - return blink::mojom::PresentationConnectionCloseReason::CONNECTION_ERROR;
|
| -}
|
| -
|
| -} // namespace content
|
| -
|
|
|