Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Unified Diff: content/common/presentation/presentation_struct_traits.h

Issue 2613153003: [Presentation API] Replaces type converters with typemaps (Closed)
Patch Set: Extend presentation ID max length to 64. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/presentation/presentation.typemap ('k') | content/common/presentation/typemaps.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/presentation/presentation_struct_traits.h
diff --git a/content/common/presentation/presentation_struct_traits.h b/content/common/presentation/presentation_struct_traits.h
new file mode 100644
index 0000000000000000000000000000000000000000..7bf19a97e336ca05aa382fc3eaa2e647df9fcc8f
--- /dev/null
+++ b/content/common/presentation/presentation_struct_traits.h
@@ -0,0 +1,202 @@
+// Copyright 2017 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.
+
+#ifndef CONTENT_COMMON_PRESENTATION_PRESENTATION_STRUCT_TRAITS_H_
+#define CONTENT_COMMON_PRESENTATION_PRESENTATION_STRUCT_TRAITS_H_
+
+#include <string>
+
+#include "base/macros.h"
+#include "base/strings/string_util.h"
+#include "content/public/common/presentation_session.h"
+#include "mojo/common/common_custom_types_struct_traits.h"
+#include "third_party/WebKit/public/platform/modules/presentation/presentation.mojom.h"
+#include "url/mojo/url.mojom.h"
+
+namespace mojo {
+
+template <>
+struct EnumTraits<blink::mojom::PresentationErrorType,
+ content::PresentationErrorType> {
+ static blink::mojom::PresentationErrorType ToMojom(
+ 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_PREVIOUS_START_IN_PROGRESS:
+ return blink::mojom::PresentationErrorType::PREVIOUS_START_IN_PROGRESS;
+ case content::PRESENTATION_ERROR_UNKNOWN:
+ return blink::mojom::PresentationErrorType::UNKNOWN;
+ }
+ NOTREACHED() << "Unknown content::PresentationErrorType "
+ << static_cast<int>(input);
+ return blink::mojom::PresentationErrorType::UNKNOWN;
+ }
+
+ static bool FromMojom(blink::mojom::PresentationErrorType input,
+ content::PresentationErrorType* output) {
+ switch (input) {
+ case blink::mojom::PresentationErrorType::NO_AVAILABLE_SCREENS:
+ *output = content::PRESENTATION_ERROR_NO_AVAILABLE_SCREENS;
+ return true;
+ case blink::mojom::PresentationErrorType::SESSION_REQUEST_CANCELLED:
+ *output = content::PRESENTATION_ERROR_SESSION_REQUEST_CANCELLED;
+ return true;
+ case blink::mojom::PresentationErrorType::NO_PRESENTATION_FOUND:
+ *output = content::PRESENTATION_ERROR_NO_PRESENTATION_FOUND;
+ return true;
+ case blink::mojom::PresentationErrorType::PREVIOUS_START_IN_PROGRESS:
+ *output = content::PRESENTATION_ERROR_PREVIOUS_START_IN_PROGRESS;
+ return true;
+ case blink::mojom::PresentationErrorType::UNKNOWN:
+ *output = content::PRESENTATION_ERROR_UNKNOWN;
+ return true;
+ }
+ return false;
+ }
+};
+
+template <>
+struct EnumTraits<blink::mojom::PresentationConnectionState,
+ content::PresentationConnectionState> {
+ static blink::mojom::PresentationConnectionState ToMojom(
+ content::PresentationConnectionState input) {
+ switch (input) {
+ 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() << "Unknown content::PresentationConnectionState "
+ << static_cast<int>(input);
+ return blink::mojom::PresentationConnectionState::TERMINATED;
+ }
+
+ static bool FromMojom(blink::mojom::PresentationConnectionState input,
+ content::PresentationConnectionState* output) {
+ switch (input) {
+ case blink::mojom::PresentationConnectionState::CONNECTING:
+ *output = content::PRESENTATION_CONNECTION_STATE_CONNECTING;
+ return true;
+ case blink::mojom::PresentationConnectionState::CONNECTED:
+ *output = content::PRESENTATION_CONNECTION_STATE_CONNECTED;
+ return true;
+ case blink::mojom::PresentationConnectionState::CLOSED:
+ *output = content::PRESENTATION_CONNECTION_STATE_CLOSED;
+ return true;
+ case blink::mojom::PresentationConnectionState::TERMINATED:
+ *output = content::PRESENTATION_CONNECTION_STATE_TERMINATED;
+ return true;
+ }
+ return false;
+ }
+};
+
+template <>
+struct EnumTraits<blink::mojom::PresentationConnectionCloseReason,
+ content::PresentationConnectionCloseReason> {
+ static blink::mojom::PresentationConnectionCloseReason ToMojom(
+ content::PresentationConnectionCloseReason input) {
+ switch (input) {
+ 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() << "Unknown content::PresentationConnectionCloseReason "
+ << static_cast<int>(input);
+ return blink::mojom::PresentationConnectionCloseReason::CONNECTION_ERROR;
+ }
+
+ static bool FromMojom(blink::mojom::PresentationConnectionCloseReason input,
+ content::PresentationConnectionCloseReason* output) {
+ switch (input) {
+ case blink::mojom::PresentationConnectionCloseReason::CONNECTION_ERROR:
+ *output =
+ content::PRESENTATION_CONNECTION_CLOSE_REASON_CONNECTION_ERROR;
+ return true;
+ case blink::mojom::PresentationConnectionCloseReason::CLOSED:
+ *output = content::PRESENTATION_CONNECTION_CLOSE_REASON_CLOSED;
+ return true;
+ case blink::mojom::PresentationConnectionCloseReason::WENT_AWAY:
+ *output = content::PRESENTATION_CONNECTION_CLOSE_REASON_WENT_AWAY;
+ return true;
+ }
+ return false;
+ }
+};
+
+template <>
+struct StructTraits<blink::mojom::PresentationSessionInfoDataView,
+ content::PresentationSessionInfo> {
+ static const GURL& url(const content::PresentationSessionInfo& session_info) {
+ return session_info.presentation_url;
+ }
+
+ static const std::string& id(
+ const content::PresentationSessionInfo& session_info) {
+ return session_info.presentation_id;
+ }
+
+ static bool Read(blink::mojom::PresentationSessionInfoDataView data,
+ content::PresentationSessionInfo* out) {
+ if (!data.ReadUrl(&(out->presentation_url)))
+ return false;
+
+ if (!data.ReadId(&(out->presentation_id)))
+ return false;
+
+ if (out->presentation_id.empty() ||
+ !base::IsStringASCII(out->presentation_id) ||
+ out->presentation_id.length() >
+ content::PresentationSessionInfo::kMaxIdLength) {
+ return false;
+ }
+
+ return true;
+ }
+};
+
+template <>
+struct StructTraits<blink::mojom::PresentationErrorDataView,
+ content::PresentationError> {
+ static content::PresentationErrorType error_type(
+ const content::PresentationError& error) {
+ return error.error_type;
+ }
+
+ static const std::string& message(const content::PresentationError& error) {
+ return error.message;
+ }
+
+ static bool Read(blink::mojom::PresentationErrorDataView data,
+ content::PresentationError* out) {
+ if (!data.ReadErrorType(&(out->error_type)))
+ return false;
+
+ if (!data.ReadMessage(&(out->message)))
+ return false;
+
+ if (!base::IsStringUTF8(out->message) ||
+ out->message.length() > content::PresentationError::kMaxMessageLength)
+ return false;
+
+ return true;
+ }
+};
+
+} // namespace mojo
+
+#endif // CONTENT_COMMON_PRESENTATION_PRESENTATION_STRUCT_TRAITS_H_
« no previous file with comments | « content/common/presentation/presentation.typemap ('k') | content/common/presentation/typemaps.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698