| Index: third_party/WebKit/Source/core/streams/ReadableByteStream.h
|
| diff --git a/third_party/WebKit/Source/core/streams/ReadableByteStream.h b/third_party/WebKit/Source/core/streams/ReadableByteStream.h
|
| deleted file mode 100644
|
| index b502b0f72e623430305580ba17b6826789a012dd..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/core/streams/ReadableByteStream.h
|
| +++ /dev/null
|
| @@ -1,33 +0,0 @@
|
| -// Copyright 2015 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 ReadableByteStream_h
|
| -#define ReadableByteStream_h
|
| -
|
| -#include "bindings/core/v8/ScriptWrappable.h"
|
| -#include "core/CoreExport.h"
|
| -#include "core/streams/ReadableStreamImpl.h"
|
| -
|
| -namespace blink {
|
| -
|
| -class DOMArrayBufferView;
|
| -class ExceptionState;
|
| -class ExecutionContext;
|
| -class ReadableByteStreamReader;
|
| -class ScriptState;
|
| -class Strategy;
|
| -class UnderlyingSource;
|
| -
|
| -class CORE_EXPORT ReadableByteStream : public ReadableStreamImpl<ReadableStreamChunkTypeTraits<DOMArrayBufferView>>, public ScriptWrappable {
|
| - DEFINE_WRAPPERTYPEINFO();
|
| -public:
|
| - explicit ReadableByteStream(UnderlyingSource* source) : ReadableStreamImpl<ReadableStreamChunkTypeTraits<DOMArrayBufferView>>(source) { }
|
| - ReadableByteStream(UnderlyingSource* source, Strategy* strategy) : ReadableStreamImpl<ReadableStreamChunkTypeTraits<DOMArrayBufferView>>(source, strategy) { }
|
| -
|
| - ReadableByteStreamReader* getBytesReader(ExecutionContext*, ExceptionState&);
|
| -};
|
| -
|
| -} // namespace blink
|
| -
|
| -#endif // ReadableByteStream_h
|
|
|