| 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 "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/memory/scoped_vector.h" | 11 #include "base/memory/scoped_vector.h" |
| 12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 13 #include "content/browser/android/content_video_view.h" | 13 #include "content/browser/android/content_video_view.h" |
| 14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
| 15 #include "content/common/media/media_player_messages_enums_android.h" | 15 #include "content/common/media/media_player_messages_enums_android.h" |
| 16 #include "ipc/ipc_message.h" | 16 #include "ipc/ipc_message.h" |
| 17 #include "media/base/android/media_player_android.h" | 17 #include "media/base/android/media_player_android.h" |
| 18 #include "media/base/android/media_player_manager.h" | 18 #include "media/base/android/media_player_manager.h" |
| 19 #include "media/base/android/media_url_interceptor.h" | 19 #include "media/base/android/media_url_interceptor.h" |
| 20 #include "ui/gfx/rect_f.h" | 20 #include "ui/gfx/geometry/rect_f.h" |
| 21 #include "url/gurl.h" | 21 #include "url/gurl.h" |
| 22 | 22 |
| 23 namespace media { | 23 namespace media { |
| 24 class DemuxerAndroid; | 24 class DemuxerAndroid; |
| 25 } | 25 } |
| 26 | 26 |
| 27 struct MediaPlayerHostMsg_Initialize_Params; | 27 struct MediaPlayerHostMsg_Initialize_Params; |
| 28 | 28 |
| 29 namespace content { | 29 namespace content { |
| 30 class BrowserDemuxerAndroid; | 30 class BrowserDemuxerAndroid; |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 | 195 |
| 196 // NOTE: Weak pointers must be invalidated before all other member variables. | 196 // NOTE: Weak pointers must be invalidated before all other member variables. |
| 197 base::WeakPtrFactory<BrowserMediaPlayerManager> weak_ptr_factory_; | 197 base::WeakPtrFactory<BrowserMediaPlayerManager> weak_ptr_factory_; |
| 198 | 198 |
| 199 DISALLOW_COPY_AND_ASSIGN(BrowserMediaPlayerManager); | 199 DISALLOW_COPY_AND_ASSIGN(BrowserMediaPlayerManager); |
| 200 }; | 200 }; |
| 201 | 201 |
| 202 } // namespace content | 202 } // namespace content |
| 203 | 203 |
| 204 #endif // CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_PLAYER_MANAGER_H_ | 204 #endif // CONTENT_BROWSER_MEDIA_ANDROID_BROWSER_MEDIA_PLAYER_MANAGER_H_ |
| OLD | NEW |