| 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 // IPC messages for interactions between the WebMediaPlayerDelegate in the | 5 // IPC messages for interactions between the WebMediaPlayerDelegate in the |
| 6 // renderer process and MediaWebContentsObserver in the browser process. | 6 // renderer process and MediaWebContentsObserver in the browser process. |
| 7 // Multiply-included message file, hence no include guard. | 7 // Multiply-included message file, hence no include guard. |
| 8 | 8 |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 IPC_MESSAGE_ROUTED2(MediaPlayerDelegateHostMsg_OnMediaPaused, | 44 IPC_MESSAGE_ROUTED2(MediaPlayerDelegateHostMsg_OnMediaPaused, |
| 45 int /* delegate_id, distinguishes instances */, | 45 int /* delegate_id, distinguishes instances */, |
| 46 bool /* reached end of stream */) | 46 bool /* reached end of stream */) |
| 47 | 47 |
| 48 IPC_MESSAGE_ROUTED5(MediaPlayerDelegateHostMsg_OnMediaPlaying, | 48 IPC_MESSAGE_ROUTED5(MediaPlayerDelegateHostMsg_OnMediaPlaying, |
| 49 int /* delegate_id, distinguishes instances */, | 49 int /* delegate_id, distinguishes instances */, |
| 50 bool /* has_video */, | 50 bool /* has_video */, |
| 51 bool /* has_audio */, | 51 bool /* has_audio */, |
| 52 bool /* is_remote */, | 52 bool /* is_remote */, |
| 53 media::MediaContentType /* media_content_type */) | 53 media::MediaContentType /* media_content_type */) |
| 54 |
| 55 IPC_MESSAGE_ROUTED2( |
| 56 MediaPlayerDelegateHostMsg_OnMediaEffectivelyFullscreenChange, |
| 57 int /* delegate_id */, |
| 58 bool /* is_fullscreen */) |
| OLD | NEW |