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

Unified Diff: third_party/WebKit/Source/core/streams/ReadableByteStream.h

Issue 2227403002: Remove blink::ReadableStream (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/streams/ReadableByteStream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698