Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(265)

Side by Side Diff: media/blink/webmediaplayer_impl.h

Issue 2120273004: Getting rid of AudioHardwareConfig and its synchronous IPC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased to guidou@ changes, dropped unknown frame id and default param caching Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698