OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // IPC messages for android media player. | 5 // IPC messages for android media player. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/time.h" | 10 #include "base/time/time.h" |
11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
12 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
13 #include "ipc/ipc_message_macros.h" | 13 #include "ipc/ipc_message_macros.h" |
14 #include "media/base/android/media_player_android.h" | 14 #include "media/base/android/media_player_android.h" |
15 #include "media/base/media_keys.h" | 15 #include "media/base/media_keys.h" |
16 #include "ui/gfx/rect_f.h" | 16 #include "ui/gfx/rect_f.h" |
17 | 17 |
18 #undef IPC_MESSAGE_EXPORT | 18 #undef IPC_MESSAGE_EXPORT |
19 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 19 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
20 #define IPC_MESSAGE_START MediaPlayerMsgStart | 20 #define IPC_MESSAGE_START MediaPlayerMsgStart |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 int /* media_keys_id */, | 242 int /* media_keys_id */, |
243 std::string /* session_id */, | 243 std::string /* session_id */, |
244 media::MediaKeys::KeyError /* error_code */, | 244 media::MediaKeys::KeyError /* error_code */, |
245 int /* system_code */) | 245 int /* system_code */) |
246 | 246 |
247 IPC_MESSAGE_ROUTED4(MediaKeysMsg_KeyMessage, | 247 IPC_MESSAGE_ROUTED4(MediaKeysMsg_KeyMessage, |
248 int /* media_keys_id */, | 248 int /* media_keys_id */, |
249 std::string /* session_id */, | 249 std::string /* session_id */, |
250 std::string /* message */, | 250 std::string /* message */, |
251 std::string /* destination_url */) | 251 std::string /* destination_url */) |
OLD | NEW |