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

Side by Side Diff: content/renderer/media/android/renderer_media_player_manager.h

Issue 1308983005: NOT FOR LANDING Implement WebMediaSession (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add forward declaration Created 4 years, 11 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_
6 #define CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ 6 #define CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
(...skipping 29 matching lines...) Expand all
40 bool OnMessageReceived(const IPC::Message& msg) override; 40 bool OnMessageReceived(const IPC::Message& msg) override;
41 void WasHidden() override; 41 void WasHidden() override;
42 42
43 // Initializes a MediaPlayerAndroid object in browser process. 43 // Initializes a MediaPlayerAndroid object in browser process.
44 void Initialize(MediaPlayerHostMsg_Initialize_Type type, 44 void Initialize(MediaPlayerHostMsg_Initialize_Type type,
45 int player_id, 45 int player_id,
46 const GURL& url, 46 const GURL& url,
47 const GURL& first_party_for_cookies, 47 const GURL& first_party_for_cookies,
48 int demuxer_client_id, 48 int demuxer_client_id,
49 const GURL& frame_url, 49 const GURL& frame_url,
50 bool allow_credentials); 50 bool allow_credentials,
51 int session_id);
51 52
52 // Starts the player. 53 // Starts the player.
53 void Start(int player_id); 54 void Start(int player_id);
54 55
55 // Pauses the player. 56 // Pauses the player.
56 // is_media_related_action should be true if this pause is coming from an 57 // is_media_related_action should be true if this pause is coming from an
57 // an action that explicitly pauses the video (user pressing pause, JS, etc.) 58 // an action that explicitly pauses the video (user pressing pause, JS, etc.)
58 // Otherwise it should be false if Pause is being called due to other reasons 59 // Otherwise it should be false if Pause is being called due to other reasons
59 // (cleanup, freeing resources, etc.) 60 // (cleanup, freeing resources, etc.)
60 void Pause(int player_id, bool is_media_related_action); 61 void Pause(int player_id, bool is_media_related_action);
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 std::map<int, WebMediaPlayerAndroid*> media_players_; 152 std::map<int, WebMediaPlayerAndroid*> media_players_;
152 153
153 int next_media_player_id_; 154 int next_media_player_id_;
154 155
155 DISALLOW_COPY_AND_ASSIGN(RendererMediaPlayerManager); 156 DISALLOW_COPY_AND_ASSIGN(RendererMediaPlayerManager);
156 }; 157 };
157 158
158 } // namespace content 159 } // namespace content
159 160
160 #endif // CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ 161 #endif // CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_
OLDNEW
« no previous file with comments | « content/common/media/media_player_messages_android.h ('k') | content/renderer/media/android/renderer_media_player_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698