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

Side by Side Diff: content/common/media/media_player_delegate_messages.h

Issue 2693203002: Provide a WebContents API to discover the playback of a fullscreen video. (Closed)
Patch Set: review comments and compile fix Created 3 years, 9 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 unified diff | Download patch
OLDNEW
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
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 */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698