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 MEDIA_BLINK_WEBMEDIAPLAYER_IMPL_H_ | 5 #ifndef MEDIA_BLINK_WEBMEDIAPLAYER_IMPL_H_ |
6 #define MEDIA_BLINK_WEBMEDIAPLAYER_IMPL_H_ | 6 #define MEDIA_BLINK_WEBMEDIAPLAYER_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
16 #include "base/threading/thread.h" | 16 #include "base/threading/thread.h" |
17 #include "media/base/cdm_factory.h" | 17 #include "media/base/cdm_factory.h" |
18 #include "media/base/media_export.h" | 18 #include "media/base/media_export.h" |
19 #include "media/base/pipeline.h" | 19 #include "media/base/pipeline.h" |
20 #include "media/base/renderer_factory.h" | 20 #include "media/base/renderer_factory.h" |
21 #include "media/base/text_track.h" | 21 #include "media/base/text_track.h" |
22 #include "media/blink/buffered_data_source.h" | 22 #include "media/blink/buffered_data_source.h" |
23 #include "media/blink/buffered_data_source_host_impl.h" | 23 #include "media/blink/buffered_data_source_host_impl.h" |
24 #include "media/blink/encrypted_media_player_support.h" | 24 #include "media/blink/encrypted_media_player_support.h" |
| 25 #include "media/blink/skcanvas_video_renderer.h" |
25 #include "media/blink/video_frame_compositor.h" | 26 #include "media/blink/video_frame_compositor.h" |
26 #include "media/blink/webmediaplayer_params.h" | 27 #include "media/blink/webmediaplayer_params.h" |
27 #include "media/filters/skcanvas_video_renderer.h" | |
28 #include "third_party/WebKit/public/platform/WebAudioSourceProvider.h" | 28 #include "third_party/WebKit/public/platform/WebAudioSourceProvider.h" |
29 #include "third_party/WebKit/public/platform/WebContentDecryptionModuleResult.h" | 29 #include "third_party/WebKit/public/platform/WebContentDecryptionModuleResult.h" |
30 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" | 30 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" |
31 #include "third_party/WebKit/public/platform/WebMediaPlayerClient.h" | 31 #include "third_party/WebKit/public/platform/WebMediaPlayerClient.h" |
32 #include "url/gurl.h" | 32 #include "url/gurl.h" |
33 | 33 |
34 namespace blink { | 34 namespace blink { |
35 class WebGraphicsContext3D; | 35 class WebGraphicsContext3D; |
36 class WebLocalFrame; | 36 class WebLocalFrame; |
37 } | 37 } |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 EncryptedMediaPlayerSupport encrypted_media_support_; | 314 EncryptedMediaPlayerSupport encrypted_media_support_; |
315 | 315 |
316 scoped_ptr<RendererFactory> renderer_factory_; | 316 scoped_ptr<RendererFactory> renderer_factory_; |
317 | 317 |
318 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); | 318 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); |
319 }; | 319 }; |
320 | 320 |
321 } // namespace media | 321 } // namespace media |
322 | 322 |
323 #endif // MEDIA_BLINK_WEBMEDIAPLAYER_IMPL_H_ | 323 #endif // MEDIA_BLINK_WEBMEDIAPLAYER_IMPL_H_ |
OLD | NEW |