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 <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 class WebLayerImpl; | 60 class WebLayerImpl; |
61 } | 61 } |
62 | 62 |
63 namespace gpu { | 63 namespace gpu { |
64 namespace gles2 { | 64 namespace gles2 { |
65 class GLES2Interface; | 65 class GLES2Interface; |
66 } | 66 } |
67 } | 67 } |
68 | 68 |
69 namespace media { | 69 namespace media { |
70 class AudioHardwareConfig; | |
71 class ChunkDemuxer; | 70 class ChunkDemuxer; |
72 class GpuVideoAcceleratorFactories; | 71 class GpuVideoAcceleratorFactories; |
73 class MediaLog; | 72 class MediaLog; |
74 class UrlIndex; | 73 class UrlIndex; |
75 class VideoFrameCompositor; | 74 class VideoFrameCompositor; |
76 class WebAudioSourceProviderImpl; | 75 class WebAudioSourceProviderImpl; |
77 class WebMediaPlayerDelegate; | 76 class WebMediaPlayerDelegate; |
78 class WebTextTrackImpl; | 77 class WebTextTrackImpl; |
79 | 78 |
80 // The canonical implementation of blink::WebMediaPlayer that's backed by | 79 // The canonical implementation of blink::WebMediaPlayer that's backed by |
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 // Called some-time after OnHidden() if the media was suspended in a playing | 528 // Called some-time after OnHidden() if the media was suspended in a playing |
530 // state as part of the call to OnHidden(). | 529 // state as part of the call to OnHidden(). |
531 base::OneShotTimer background_pause_timer_; | 530 base::OneShotTimer background_pause_timer_; |
532 | 531 |
533 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); | 532 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImpl); |
534 }; | 533 }; |
535 | 534 |
536 } // namespace media | 535 } // namespace media |
537 | 536 |
538 #endif // MEDIA_BLINK_WEBMEDIAPLAYER_IMPL_H_ | 537 #endif // MEDIA_BLINK_WEBMEDIAPLAYER_IMPL_H_ |
OLD | NEW |