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

Side by Side Diff: content/renderer/media/websourcebuffer_impl.h

Issue 134883002: Let WebSourceBufferImpl::setMode() update SourceState::sequence_mode_ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reference http://crbug.com/333437 in SourceState comment Created 6 years, 11 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 | Annotate | Revision Log
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 CONTENT_RENDERER_MEDIA_WEBSOURCEBUFFER_IMPL_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_WEBSOURCEBUFFER_IMPL_H_
6 #define CONTENT_RENDERER_MEDIA_WEBSOURCEBUFFER_IMPL_H_ 6 #define CONTENT_RENDERER_MEDIA_WEBSOURCEBUFFER_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "third_party/WebKit/public/platform/WebSourceBuffer.h" 12 #include "third_party/WebKit/public/platform/WebSourceBuffer.h"
13 13
14 namespace media { 14 namespace media {
15 class ChunkDemuxer; 15 class ChunkDemuxer;
16 } 16 }
17 17
18 namespace content { 18 namespace content {
19 19
20 class WebSourceBufferImpl : public blink::WebSourceBuffer { 20 class WebSourceBufferImpl : public blink::WebSourceBuffer {
21 public: 21 public:
22 WebSourceBufferImpl(const std::string& id, media::ChunkDemuxer* demuxer); 22 WebSourceBufferImpl(const std::string& id, media::ChunkDemuxer* demuxer);
23 virtual ~WebSourceBufferImpl(); 23 virtual ~WebSourceBufferImpl();
24 24
25 // blink::WebSourceBuffer implementation. 25 // blink::WebSourceBuffer implementation.
26 virtual bool setMode(AppendMode mode);
26 virtual blink::WebTimeRanges buffered(); 27 virtual blink::WebTimeRanges buffered();
27 virtual void append(const unsigned char* data, unsigned length); 28 virtual void append(const unsigned char* data, unsigned length);
28 virtual void abort(); 29 virtual void abort();
29 virtual void remove(double start, double end); 30 virtual void remove(double start, double end);
30 virtual bool setTimestampOffset(double offset); 31 virtual bool setTimestampOffset(double offset);
31 virtual void setAppendWindowStart(double start); 32 virtual void setAppendWindowStart(double start);
32 virtual void setAppendWindowEnd(double end); 33 virtual void setAppendWindowEnd(double end);
33 virtual void removedFromMediaSource(); 34 virtual void removedFromMediaSource();
34 35
35 private: 36 private:
36 std::string id_; 37 std::string id_;
37 media::ChunkDemuxer* demuxer_; // Owned by WebMediaPlayerImpl. 38 media::ChunkDemuxer* demuxer_; // Owned by WebMediaPlayerImpl.
38 39
39 DISALLOW_COPY_AND_ASSIGN(WebSourceBufferImpl); 40 DISALLOW_COPY_AND_ASSIGN(WebSourceBufferImpl);
40 }; 41 };
41 42
42 } // namespace content 43 } // namespace content
43 44
44 #endif // CONTENT_RENDERER_MEDIA_WEBSOURCEBUFFER_IMPL_H_ 45 #endif // CONTENT_RENDERER_MEDIA_WEBSOURCEBUFFER_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/media/websourcebuffer_impl.cc » ('j') | content/renderer/media/websourcebuffer_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698