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_PARAMS_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_PARAMS_H_ |
6 #define CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_PARAMS_H_ | 6 #define CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_PARAMS_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... |
32 return audio_renderer_sink_; | 32 return audio_renderer_sink_; |
33 } | 33 } |
34 | 34 |
35 private: | 35 private: |
36 base::Callback<void(const base::Closure&)> defer_load_cb_; | 36 base::Callback<void(const base::Closure&)> defer_load_cb_; |
37 scoped_refptr<media::AudioRendererSink> audio_renderer_sink_; | 37 scoped_refptr<media::AudioRendererSink> audio_renderer_sink_; |
38 | 38 |
39 DISALLOW_IMPLICIT_CONSTRUCTORS(WebMediaPlayerParams); | 39 DISALLOW_IMPLICIT_CONSTRUCTORS(WebMediaPlayerParams); |
40 }; | 40 }; |
41 | 41 |
42 } // namespace media | 42 } // namespace content |
43 | 43 |
44 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_PARAMS_H_ | 44 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_PARAMS_H_ |
OLD | NEW |