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

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

Issue 1441883003: Hook up RendererMediaSessionManager with browser side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comment from philipj: ActiveDOMObject Created 5 years 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/media_session_messages_android.h
diff --git a/content/common/media/media_session_messages_android.h b/content/common/media/media_session_messages_android.h
new file mode 100644
index 0000000000000000000000000000000000000000..304f88c9527616cfa53c2b6e0108eca270677e94
--- /dev/null
+++ b/content/common/media/media_session_messages_android.h
@@ -0,0 +1,36 @@
+// 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.
+
+// IPC messages for the Media Session API.
+// Multiply-included message file, hence no include guard.
+
+#include "base/basictypes.h"
+#include "content/common/android/gin_java_bridge_errors.h"
+#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 MediaSessionMsgStart
+
+// Messages for notifying the render process of media session status -------
+
+IPC_MESSAGE_ROUTED3(MediaSessionMsg_DidActivate,
+ int /* session_id */,
+ int /* request_id */,
+ bool /* success */)
mlamouri (slow - plz ping) 2015/12/07 18:14:52 Just note that we could make |request_id| map to t
davve 2015/12/08 10:21:23 Acknowledged.
+
+IPC_MESSAGE_ROUTED2(MediaSessionMsg_DidDeactivate,
+ int /* session_id */,
+ int /* request_id */)
+
+// Messages for controlling the media session in browser process ----------
+
+IPC_MESSAGE_ROUTED2(MediaSessionHostMsg_Activate,
+ int /* session_id */,
+ int /* request_id */)
+
+IPC_MESSAGE_ROUTED2(MediaSessionHostMsg_Deactivate,
+ int /* session_id */,
+ int /* request_id */)

Powered by Google App Engine
This is Rietveld 408576698