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

Unified Diff: third_party/wayland-protocols/include/protocol/secure-contents-unstable-v1-client-protocol.h

Issue 1804973003: third_party: Add secure_output_protocol target to wayland-protocols. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: typo Created 4 years, 9 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
Index: third_party/wayland-protocols/include/protocol/secure-contents-unstable-v1-client-protocol.h
diff --git a/third_party/wayland-protocols/include/protocol/secure-contents-unstable-v1-client-protocol.h b/third_party/wayland-protocols/include/protocol/secure-contents-unstable-v1-client-protocol.h
new file mode 100644
index 0000000000000000000000000000000000000000..87425be90a10beeeb7688e3102bf076ea0a3c298
--- /dev/null
+++ b/third_party/wayland-protocols/include/protocol/secure-contents-unstable-v1-client-protocol.h
@@ -0,0 +1,121 @@
+/*
+ * Copyright 2015 The Chromium Authors.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ */
+
+#ifndef SECURE_CONTENTS_UNSTABLE_V1_CLIENT_PROTOCOL_H
+#define SECURE_CONTENTS_UNSTABLE_V1_CLIENT_PROTOCOL_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <stdint.h>
+#include <stddef.h>
+#include "wayland-client.h"
+
+struct wl_client;
+struct wl_resource;
+
+struct zwp_secure_contents_v1;
+struct zwp_secure_v1;
+
+extern const struct wl_interface zwp_secure_contents_v1_interface;
+extern const struct wl_interface zwp_secure_v1_interface;
+
+#ifndef ZWP_SECURE_CONTENTS_V1_ERROR_ENUM
+#define ZWP_SECURE_CONTENTS_V1_ERROR_ENUM
+enum zwp_secure_contents_v1_error {
+ ZWP_SECURE_CONTENTS_V1_ERROR_SECURE_EXISTS = 0,
+};
+#endif /* ZWP_SECURE_CONTENTS_V1_ERROR_ENUM */
+
+#define ZWP_SECURE_CONTENTS_V1_DESTROY 0
+#define ZWP_SECURE_CONTENTS_V1_GET_SECURE 1
+
+static inline void
+zwp_secure_contents_v1_set_user_data(struct zwp_secure_contents_v1 *zwp_secure_contents_v1, void *user_data)
+{
+ wl_proxy_set_user_data((struct wl_proxy *) zwp_secure_contents_v1, user_data);
+}
+
+static inline void *
+zwp_secure_contents_v1_get_user_data(struct zwp_secure_contents_v1 *zwp_secure_contents_v1)
+{
+ return wl_proxy_get_user_data((struct wl_proxy *) zwp_secure_contents_v1);
+}
+
+static inline void
+zwp_secure_contents_v1_destroy(struct zwp_secure_contents_v1 *zwp_secure_contents_v1)
+{
+ wl_proxy_marshal((struct wl_proxy *) zwp_secure_contents_v1,
+ ZWP_SECURE_CONTENTS_V1_DESTROY);
+
+ wl_proxy_destroy((struct wl_proxy *) zwp_secure_contents_v1);
+}
+
+static inline struct zwp_secure_v1 *
+zwp_secure_contents_v1_get_secure(struct zwp_secure_contents_v1 *zwp_secure_contents_v1, struct wl_surface *surface)
+{
+ struct wl_proxy *id;
+
+ id = wl_proxy_marshal_constructor((struct wl_proxy *) zwp_secure_contents_v1,
+ ZWP_SECURE_CONTENTS_V1_GET_SECURE, &zwp_secure_v1_interface, NULL, surface);
+
+ return (struct zwp_secure_v1 *) id;
+}
+
+#define ZWP_SECURE_V1_DESTROY 0
+#define ZWP_SECURE_V1_ENABLE_SENSITIVE_CONTENTS 1
+
+static inline void
+zwp_secure_v1_set_user_data(struct zwp_secure_v1 *zwp_secure_v1, void *user_data)
+{
+ wl_proxy_set_user_data((struct wl_proxy *) zwp_secure_v1, user_data);
+}
+
+static inline void *
+zwp_secure_v1_get_user_data(struct zwp_secure_v1 *zwp_secure_v1)
+{
+ return wl_proxy_get_user_data((struct wl_proxy *) zwp_secure_v1);
+}
+
+static inline void
+zwp_secure_v1_destroy(struct zwp_secure_v1 *zwp_secure_v1)
+{
+ wl_proxy_marshal((struct wl_proxy *) zwp_secure_v1,
+ ZWP_SECURE_V1_DESTROY);
+
+ wl_proxy_destroy((struct wl_proxy *) zwp_secure_v1);
+}
+
+static inline void
+zwp_secure_v1_enable_sensitive_contents(struct zwp_secure_v1 *zwp_secure_v1)
+{
+ wl_proxy_marshal((struct wl_proxy *) zwp_secure_v1,
+ ZWP_SECURE_V1_ENABLE_SENSITIVE_CONTENTS);
+}
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif

Powered by Google App Engine
This is Rietveld 408576698