| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef CONTENT_COMMON_MEDIA_MEDIA_PLAYER_DELEGATE_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_MEDIA_MEDIA_PLAYER_DELEGATE_MESSAGES_H_ |
| 7 |
| 5 // IPC messages for interactions between the WebMediaPlayerDelegate in the | 8 // IPC messages for interactions between the WebMediaPlayerDelegate in the |
| 6 // renderer process and MediaWebContentsObserver in the browser process. | 9 // renderer process and MediaWebContentsObserver in the browser process. |
| 7 // Multiply-included message file, hence no include guard. | 10 // Multiply-included message file, hence no include guard. |
| 8 | 11 |
| 9 #include <stdint.h> | 12 #include <stdint.h> |
| 10 | 13 |
| 11 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
| 12 #include "ipc/ipc_message_macros.h" | 15 #include "ipc/ipc_message_macros.h" |
| 13 #include "media/base/media_content_type.h" | 16 #include "media/base/media_content_type.h" |
| 14 #include "ui/gfx/ipc/geometry/gfx_param_traits.h" | 17 #include "ui/gfx/ipc/geometry/gfx_param_traits.h" |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 bool /* the new muted status */) | 65 bool /* the new muted status */) |
| 63 | 66 |
| 64 IPC_MESSAGE_ROUTED2( | 67 IPC_MESSAGE_ROUTED2( |
| 65 MediaPlayerDelegateHostMsg_OnMediaEffectivelyFullscreenChanged, | 68 MediaPlayerDelegateHostMsg_OnMediaEffectivelyFullscreenChanged, |
| 66 int /* delegate_id, distinguishes instances */, | 69 int /* delegate_id, distinguishes instances */, |
| 67 bool /* is_fullscreen */) | 70 bool /* is_fullscreen */) |
| 68 | 71 |
| 69 IPC_MESSAGE_ROUTED2(MediaPlayerDelegateHostMsg_OnMediaSizeChanged, | 72 IPC_MESSAGE_ROUTED2(MediaPlayerDelegateHostMsg_OnMediaSizeChanged, |
| 70 int /* delegate_id, distinguishes instances */, | 73 int /* delegate_id, distinguishes instances */, |
| 71 gfx::Size /* new size of video */) | 74 gfx::Size /* new size of video */) |
| 75 |
| 76 #endif // CONTENT_COMMON_MEDIA_MEDIA_PLAYER_DELEGATE_MESSAGES_H_ |
| OLD | NEW |