| 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_RENDERER_MEDIA_WEBMEDIAPLAYER_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_IMPL_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_IMPL_H_ | 6 #define CONTENT_RENDERER_MEDIA_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/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 15 #include "base/threading/thread.h" | 15 #include "base/threading/thread.h" |
| 16 #include "content/renderer/media/buffered_data_source_host_impl.h" | 16 #include "content/renderer/media/buffered_data_source_host_impl.h" |
| 17 #include "content/renderer/media/crypto/proxy_decryptor.h" | 17 #include "content/renderer/media/crypto/proxy_decryptor.h" |
| 18 #include "content/renderer/media/video_frame_compositor.h" | 18 #include "content/renderer/media/video_frame_compositor.h" |
| 19 #include "media/base/audio_renderer_sink.h" | 19 #include "media/base/audio_renderer_sink.h" |
| 20 #include "media/base/decryptor.h" | 20 #include "media/base/decryptor.h" |
| 21 // TODO(xhwang): Remove when we remove prefixed EME implementation. | 21 // TODO(xhwang): Remove when we remove prefixed EME implementation. |
| 22 #include "media/base/media_keys.h" | 22 #include "media/base/media_keys.h" |
| 23 #include "media/base/pipeline.h" | 23 #include "media/base/pipeline.h" |
| 24 #include "media/base/text_track.h" | 24 #include "media/base/text_track.h" |
| 25 #include "media/filters/skcanvas_video_renderer.h" | 25 #include "media/filters/skcanvas_video_renderer.h" |
| 26 #include "skia/ext/platform_canvas.h" | 26 #include "skia/ext/platform_canvas.h" |
| 27 #include "third_party/WebKit/public/platform/WebAudioSourceProvider.h" | 27 #include "third_party/WebKit/public/platform/WebAudioSourceProvider.h" |
| 28 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" | |
| 29 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" | 28 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" |
| 30 #include "third_party/WebKit/public/platform/WebMediaPlayerClient.h" | 29 #include "third_party/WebKit/public/platform/WebMediaPlayerClient.h" |
| 31 #include "url/gurl.h" | 30 #include "url/gurl.h" |
| 32 | 31 |
| 33 class RenderAudioSourceProvider; | 32 class RenderAudioSourceProvider; |
| 34 | 33 |
| 35 namespace blink { | 34 namespace blink { |
| 36 class WebContentDecryptionModule; | 35 class WebContentDecryptionModule; |
| 37 class WebContentDecryptionModuleResult; | 36 class WebContentDecryptionModuleResult; |
| 37 class WebGraphicsContext3D; |
| 38 class WebLocalFrame; | 38 class WebLocalFrame; |
| 39 } | 39 } |
| 40 | 40 |
| 41 namespace base { | 41 namespace base { |
| 42 class MessageLoopProxy; | 42 class MessageLoopProxy; |
| 43 } | 43 } |
| 44 | 44 |
| 45 namespace cc_blink { | 45 namespace cc_blink { |
| 46 class WebLayerImpl; | 46 class WebLayerImpl; |
| 47 } | 47 } |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 WebContentDecryptionModuleImpl* web_cdm_; | 363 WebContentDecryptionModuleImpl* web_cdm_; |
| 364 | 364 |
| 365 media::DecryptorReadyCB decryptor_ready_cb_; | 365 media::DecryptorReadyCB decryptor_ready_cb_; |
| 366 | 366 |
| 367 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); | 367 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); |
| 368 }; | 368 }; |
| 369 | 369 |
| 370 } // namespace content | 370 } // namespace content |
| 371 | 371 |
| 372 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_IMPL_H_ | 372 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_IMPL_H_ |
| OLD | NEW |