| 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 // Delegate calls from WebCore::MediaPlayerPrivate to Chrome's video player. | 5 // Delegate calls from WebCore::MediaPlayerPrivate to Chrome's video player. |
| 6 // It contains Pipeline which is the actual media player pipeline, it glues | 6 // It contains Pipeline which is the actual media player pipeline, it glues |
| 7 // the media player pipeline, data source, audio renderer and renderer. | 7 // the media player pipeline, data source, audio renderer and renderer. |
| 8 // Pipeline would creates multiple threads and access some public methods | 8 // Pipeline would creates multiple threads and access some public methods |
| 9 // of this class, so we need to be extra careful about concurrent access of | 9 // of this class, so we need to be extra careful about concurrent access of |
| 10 // methods and members. | 10 // methods and members. |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #include "content/renderer/media/crypto/proxy_decryptor.h" | 32 #include "content/renderer/media/crypto/proxy_decryptor.h" |
| 33 #include "media/base/audio_renderer_sink.h" | 33 #include "media/base/audio_renderer_sink.h" |
| 34 #include "media/base/decryptor.h" | 34 #include "media/base/decryptor.h" |
| 35 #include "media/base/media_keys.h" | 35 #include "media/base/media_keys.h" |
| 36 #include "media/base/pipeline.h" | 36 #include "media/base/pipeline.h" |
| 37 #include "media/base/text_track.h" | 37 #include "media/base/text_track.h" |
| 38 #include "media/filters/skcanvas_video_renderer.h" | 38 #include "media/filters/skcanvas_video_renderer.h" |
| 39 #include "skia/ext/platform_canvas.h" | 39 #include "skia/ext/platform_canvas.h" |
| 40 #include "third_party/WebKit/public/platform/WebAudioSourceProvider.h" | 40 #include "third_party/WebKit/public/platform/WebAudioSourceProvider.h" |
| 41 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" | 41 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
| 42 #include "third_party/WebKit/public/web/WebMediaPlayer.h" | 42 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" |
| 43 #include "third_party/WebKit/public/web/WebMediaPlayerClient.h" | 43 #include "third_party/WebKit/public/platform/WebMediaPlayerClient.h" |
| 44 #include "url/gurl.h" | 44 #include "url/gurl.h" |
| 45 | 45 |
| 46 class RenderAudioSourceProvider; | 46 class RenderAudioSourceProvider; |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 class WebFrame; | 49 class WebFrame; |
| 50 } | 50 } |
| 51 | 51 |
| 52 namespace base { | 52 namespace base { |
| 53 class MessageLoopProxy; | 53 class MessageLoopProxy; |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 | 374 |
| 375 // Text track objects get a unique index value when they're created. | 375 // Text track objects get a unique index value when they're created. |
| 376 int text_track_index_; | 376 int text_track_index_; |
| 377 | 377 |
| 378 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); | 378 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); |
| 379 }; | 379 }; |
| 380 | 380 |
| 381 } // namespace content | 381 } // namespace content |
| 382 | 382 |
| 383 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_IMPL_H_ | 383 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_IMPL_H_ |
| OLD | NEW |