OLD | NEW |
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_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_PLAYER_MANAGER_H_ | 5 #ifndef CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_PLAYER_MANAGER_H_ |
6 #define CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_PLAYER_MANAGER_H_ | 6 #define CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_PLAYER_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/scoped_vector.h" | 13 #include "base/memory/scoped_vector.h" |
14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
15 #include "content/browser/android/content_video_view.h" | 15 #include "content/browser/android/content_video_view.h" |
16 #include "content/browser/media/android/media_session_observer.h" | 16 #include "content/browser/media/android/media_session_observer.h" |
17 #include "content/common/content_export.h" | 17 #include "content/common/content_export.h" |
18 #include "content/common/media/media_player_messages_enums_android.h" | |
19 #include "ipc/ipc_message.h" | 18 #include "ipc/ipc_message.h" |
20 #include "media/base/android/media_player_android.h" | 19 #include "media/base/android/media_player_android.h" |
21 #include "media/base/android/media_player_manager.h" | 20 #include "media/base/android/media_player_manager.h" |
22 #include "media/base/android/media_url_interceptor.h" | 21 #include "media/base/android/media_url_interceptor.h" |
23 #include "ui/gfx/geometry/rect_f.h" | 22 #include "ui/gfx/geometry/rect_f.h" |
24 #include "url/gurl.h" | 23 #include "url/gurl.h" |
25 | 24 |
26 namespace media { | 25 namespace media { |
27 class DemuxerAndroid; | 26 class DemuxerAndroid; |
28 } | 27 } |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 | 231 |
233 // NOTE: Weak pointers must be invalidated before all other member variables. | 232 // NOTE: Weak pointers must be invalidated before all other member variables. |
234 base::WeakPtrFactory<BrowserMediaPlayerManager> weak_ptr_factory_; | 233 base::WeakPtrFactory<BrowserMediaPlayerManager> weak_ptr_factory_; |
235 | 234 |
236 DISALLOW_COPY_AND_ASSIGN(BrowserMediaPlayerManager); | 235 DISALLOW_COPY_AND_ASSIGN(BrowserMediaPlayerManager); |
237 }; | 236 }; |
238 | 237 |
239 } // namespace content | 238 } // namespace content |
240 | 239 |
241 #endif // CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_PLAYER_MANAGER_H_ | 240 #endif // CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_PLAYER_MANAGER_H_ |
OLD | NEW |