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

Unified Diff: content/common/media/surface_view_manager_messages_android.h

Issue 1655083002: Enable SurfaceView fullscreen video on Android with WebMediaPlayerImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@avda-sv
Patch Set: Created 4 years, 11 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: content/common/media/surface_view_manager_messages_android.h
diff --git a/content/common/media/surface_view_manager_messages_android.h b/content/common/media/surface_view_manager_messages_android.h
new file mode 100644
index 0000000000000000000000000000000000000000..81c6e85dc929a4700b31bb1f0b3a9d56cc6294e8
--- /dev/null
+++ b/content/common/media/surface_view_manager_messages_android.h
@@ -0,0 +1,18 @@
+// Copyright 2016 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.
+
+// IPC messages for surface view manager.
+// Multiply-included message file, hence no include guard.
+
+#include "content/common/content_export.h"
+#include "ipc/ipc_message_macros.h"
+
+#undef IPC_MESSAGE_EXPORT
+#define IPC_MESSAGE_EXPORT CONTENT_EXPORT
+#define IPC_MESSAGE_START SurfaceViewManagerMsgStart
+
+IPC_MESSAGE_ROUTED0(BrowserSurfaceViewManagerMsg_CreateFullscreenSurface)
+
+IPC_MESSAGE_ROUTED1(RendererSurfaceViewManagerMsg_FullscreenSurfaceCreated,
+ int /* surface_id */)

Powered by Google App Engine
This is Rietveld 408576698