| 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; | 
|  | 36 class WebGraphicsContext3D; | 
| 37 class WebLocalFrame; | 37 class WebLocalFrame; | 
| 38 } | 38 } | 
| 39 | 39 | 
| 40 namespace base { | 40 namespace base { | 
| 41 class MessageLoopProxy; | 41 class MessageLoopProxy; | 
| 42 } | 42 } | 
| 43 | 43 | 
| 44 namespace media { | 44 namespace media { | 
| 45 class ChunkDemuxer; | 45 class ChunkDemuxer; | 
| 46 class GpuVideoAcceleratorFactories; | 46 class GpuVideoAcceleratorFactories; | 
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 338   WebContentDecryptionModuleImpl* web_cdm_; | 338   WebContentDecryptionModuleImpl* web_cdm_; | 
| 339 | 339 | 
| 340   media::DecryptorReadyCB decryptor_ready_cb_; | 340   media::DecryptorReadyCB decryptor_ready_cb_; | 
| 341 | 341 | 
| 342   DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); | 342   DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); | 
| 343 }; | 343 }; | 
| 344 | 344 | 
| 345 }  // namespace content | 345 }  // namespace content | 
| 346 | 346 | 
| 347 #endif  // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_IMPL_H_ | 347 #endif  // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_IMPL_H_ | 
| OLD | NEW | 
|---|