| 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_WEBMEDIASOURCE_IMPL_H_ | 5 #ifndef MEDIA_BLINK_WEBMEDIASOURCE_IMPL_H_ |
| 6 #define MEDIA_BLINK_WEBMEDIASOURCE_IMPL_H_ | 6 #define MEDIA_BLINK_WEBMEDIASOURCE_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "media/base/media_export.h" | 11 #include "media/base/media_export.h" |
| 12 #include "media/base/media_log.h" | 12 #include "media/base/media_log.h" |
| 13 #include "third_party/WebKit/public/platform/WebMediaSource.h" | 13 #include "third_party/WebKit/public/platform/WebMediaSource.h" |
| 14 | 14 |
| 15 namespace media { | 15 namespace media { |
| 16 class ChunkDemuxer; | 16 class ChunkDemuxer; |
| 17 | 17 |
| 18 class MEDIA_EXPORT WebMediaSourceImpl | 18 class MEDIA_EXPORT WebMediaSourceImpl |
| 19 : NON_EXPORTED_BASE(public blink::WebMediaSource) { | 19 : NON_EXPORTED_BASE(public blink::WebMediaSource) { |
| 20 public: | 20 public: |
| 21 WebMediaSourceImpl(ChunkDemuxer* demuxer, | 21 WebMediaSourceImpl(ChunkDemuxer* demuxer, |
| 22 const scoped_refptr<MediaLog>& media_log); | 22 const scoped_refptr<MediaLog>& media_log); |
| 23 virtual ~WebMediaSourceImpl(); | 23 virtual ~WebMediaSourceImpl(); |
| 24 | 24 |
| 25 // blink::WebMediaSource implementation. | 25 // blink::WebMediaSource implementation. |
| 26 virtual AddStatus addSourceBuffer( | 26 virtual AddStatus addSourceBuffer( |
| 27 const blink::WebString& type, | 27 const blink::WebString& type, |
| 28 const blink::WebVector<blink::WebString>& codecs, | |
| 29 blink::WebSourceBuffer** source_buffer); | |
| 30 virtual AddStatus addSourceBuffer( | |
| 31 const blink::WebString& type, | |
| 32 const blink::WebString& codecs, | 28 const blink::WebString& codecs, |
| 33 blink::WebSourceBuffer** source_buffer); | 29 blink::WebSourceBuffer** source_buffer); |
| 34 virtual double duration(); | 30 virtual double duration(); |
| 35 virtual void setDuration(double duration); | 31 virtual void setDuration(double duration); |
| 36 virtual void markEndOfStream(EndOfStreamStatus status); | 32 virtual void markEndOfStream(EndOfStreamStatus status); |
| 37 virtual void unmarkEndOfStream(); | 33 virtual void unmarkEndOfStream(); |
| 38 | 34 |
| 39 private: | 35 private: |
| 40 ChunkDemuxer* demuxer_; // Owned by WebMediaPlayerImpl. | 36 ChunkDemuxer* demuxer_; // Owned by WebMediaPlayerImpl. |
| 41 scoped_refptr<MediaLog> media_log_; | 37 scoped_refptr<MediaLog> media_log_; |
| 42 | 38 |
| 43 DISALLOW_COPY_AND_ASSIGN(WebMediaSourceImpl); | 39 DISALLOW_COPY_AND_ASSIGN(WebMediaSourceImpl); |
| 44 }; | 40 }; |
| 45 | 41 |
| 46 } // namespace media | 42 } // namespace media |
| 47 | 43 |
| 48 #endif // MEDIA_BLINK_WEBMEDIASOURCE_IMPL_H_ | 44 #endif // MEDIA_BLINK_WEBMEDIASOURCE_IMPL_H_ |
| OLD | NEW |