OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_ANDROID_MEDIA_PLAYER_MANAGER_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_ANDROID_MEDIA_PLAYER_MANAGER_IMPL_H_ |
6 #define CONTENT_BROWSER_ANDROID_MEDIA_PLAYER_MANAGER_IMPL_H_ | 6 #define CONTENT_BROWSER_ANDROID_MEDIA_PLAYER_MANAGER_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/memory/scoped_vector.h" | 12 #include "base/memory/scoped_vector.h" |
13 #include "base/time.h" | 13 #include "base/time/time.h" |
14 #include "content/browser/android/content_video_view.h" | 14 #include "content/browser/android/content_video_view.h" |
15 #include "content/public/browser/render_view_host_observer.h" | 15 #include "content/public/browser/render_view_host_observer.h" |
16 #include "googleurl/src/gurl.h" | 16 #include "googleurl/src/gurl.h" |
17 #include "media/base/android/demuxer_stream_player_params.h" | 17 #include "media/base/android/demuxer_stream_player_params.h" |
18 #include "media/base/android/media_player_android.h" | 18 #include "media/base/android/media_player_android.h" |
19 #include "media/base/android/media_player_manager.h" | 19 #include "media/base/android/media_player_manager.h" |
20 #include "ui/gfx/rect_f.h" | 20 #include "ui/gfx/rect_f.h" |
21 | 21 |
22 namespace media { | 22 namespace media { |
23 class MediaDrmBridge; | 23 class MediaDrmBridge; |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 | 168 |
169 // Object for retrieving resources media players. | 169 // Object for retrieving resources media players. |
170 scoped_ptr<media::MediaResourceGetter> media_resource_getter_; | 170 scoped_ptr<media::MediaResourceGetter> media_resource_getter_; |
171 | 171 |
172 DISALLOW_COPY_AND_ASSIGN(MediaPlayerManagerImpl); | 172 DISALLOW_COPY_AND_ASSIGN(MediaPlayerManagerImpl); |
173 }; | 173 }; |
174 | 174 |
175 } // namespace content | 175 } // namespace content |
176 | 176 |
177 #endif // CONTENT_BROWSER_ANDROID_MEDIA_PLAYER_MANAGER_IMPL_H_ | 177 #endif // CONTENT_BROWSER_ANDROID_MEDIA_PLAYER_MANAGER_IMPL_H_ |
OLD | NEW |