| Index: third_party/WebKit/Source/modules/mediasource/VideoTrackSourceBuffer.h
|
| diff --git a/third_party/WebKit/Source/modules/mediasource/VideoTrackSourceBuffer.h b/third_party/WebKit/Source/modules/mediasource/VideoTrackSourceBuffer.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c76027178634751c0d91ef1ee45f7ff14b8b798b
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/modules/mediasource/VideoTrackSourceBuffer.h
|
| @@ -0,0 +1,22 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef VideoTrackSourceBuffer_h
|
| +#define VideoTrackSourceBuffer_h
|
| +
|
| +#include "modules/mediasource/SourceBufferTrackBaseSupplement.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class SourceBuffer;
|
| +class VideoTrack;
|
| +
|
| +class VideoTrackSourceBuffer final : public SourceBufferTrackBaseSupplement {
|
| +public:
|
| + explicit VideoTrackSourceBuffer(VideoTrack&, SourceBuffer*);
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif
|
|
|