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

Unified Diff: Source/core/streams/ExclusiveStreamReader.idl

Issue 1001233002: Streams Implementation Update: Reader name and Stream methods (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « Source/core/streams/ExclusiveStreamReader.cpp ('k') | Source/core/streams/ExclusiveStreamReaderTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/streams/ExclusiveStreamReader.idl
diff --git a/Source/core/streams/ExclusiveStreamReader.idl b/Source/core/streams/ExclusiveStreamReader.idl
deleted file mode 100644
index 1dc03d0227be5a925c17b766dd269ab6d0ba287c..0000000000000000000000000000000000000000
--- a/Source/core/streams/ExclusiveStreamReader.idl
+++ /dev/null
@@ -1,22 +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.
-
-[
- RuntimeEnabled=ExperimentalStream,
- GarbageCollected,
- ActiveDOMObject,
- Exposed=(Window,Worker),
-] interface ExclusiveStreamReader {
- // FIXME: Add constructor.
-
- [CallWith=ScriptState] readonly attribute Promise closed;
- readonly attribute boolean isActive;
- [CallWith=ScriptState] readonly attribute Promise ready;
- // See ReadableStream.state.
- readonly attribute DOMString state;
-
- [CallWith=ScriptState] Promise cancel(any reason);
- [CallWith=ScriptState, RaisesException] any read();
- void releaseLock();
-};
« no previous file with comments | « Source/core/streams/ExclusiveStreamReader.cpp ('k') | Source/core/streams/ExclusiveStreamReaderTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698