| OLD | NEW | 
|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 Body_h | 5 #ifndef Body_h | 
| 6 #define Body_h | 6 #define Body_h | 
| 7 | 7 | 
| 8 #include "bindings/core/v8/ActiveScriptWrappable.h" | 8 #include "bindings/core/v8/ActiveScriptWrappable.h" | 
| 9 #include "bindings/core/v8/ScriptPromise.h" | 9 #include "bindings/core/v8/ScriptPromise.h" | 
| 10 #include "bindings/core/v8/ScriptValue.h" | 10 #include "bindings/core/v8/ScriptValue.h" | 
| 11 #include "bindings/core/v8/ScriptWrappable.h" | 11 #include "bindings/core/v8/ScriptWrappable.h" | 
| 12 #include "core/dom/ContextLifecycleObserver.h" | 12 #include "core/dom/ContextLifecycleObserver.h" | 
| 13 #include "modules/ModulesExport.h" | 13 #include "modules/ModulesExport.h" | 
| 14 #include "platform/heap/Handle.h" | 14 #include "platform/heap/Handle.h" | 
| 15 #include "wtf/text/WTFString.h" | 15 #include "wtf/text/WTFString.h" | 
| 16 | 16 | 
| 17 namespace blink { | 17 namespace blink { | 
| 18 | 18 | 
| 19 class BodyStreamBuffer; | 19 class BodyStreamBuffer; | 
| 20 class ExecutionContext; | 20 class ExecutionContext; | 
| 21 class ReadableByteStream; |  | 
| 22 class ScriptState; | 21 class ScriptState; | 
| 23 | 22 | 
| 24 // This class represents Body mix-in defined in the fetch spec | 23 // This class represents Body mix-in defined in the fetch spec | 
| 25 // https://fetch.spec.whatwg.org/#body-mixin. | 24 // https://fetch.spec.whatwg.org/#body-mixin. | 
| 26 // | 25 // | 
| 27 // Note: This class has body stream and its predicate whereas in the current | 26 // Note: This class has body stream and its predicate whereas in the current | 
| 28 // spec only Response has it and Request has a byte stream defined in the | 27 // spec only Response has it and Request has a byte stream defined in the | 
| 29 // Encoding spec. The spec should be fixed shortly to be aligned with this | 28 // Encoding spec. The spec should be fixed shortly to be aligned with this | 
| 30 // implementation. | 29 // implementation. | 
| 31 class MODULES_EXPORT Body : public GarbageCollected<Body>, | 30 class MODULES_EXPORT Body : public GarbageCollected<Body>, | 
| (...skipping 30 matching lines...) Expand all  Loading... | 
| 62   // Body consumption algorithms will reject with a TypeError in a number of | 61   // Body consumption algorithms will reject with a TypeError in a number of | 
| 63   // error conditions. This method wraps those up into one call which returns | 62   // error conditions. This method wraps those up into one call which returns | 
| 64   // an empty ScriptPromise if the consumption may proceed, and a | 63   // an empty ScriptPromise if the consumption may proceed, and a | 
| 65   // ScriptPromise rejected with a TypeError if it ought to be blocked. | 64   // ScriptPromise rejected with a TypeError if it ought to be blocked. | 
| 66   ScriptPromise rejectInvalidConsumption(ScriptState*); | 65   ScriptPromise rejectInvalidConsumption(ScriptState*); | 
| 67 }; | 66 }; | 
| 68 | 67 | 
| 69 }  // namespace blink | 68 }  // namespace blink | 
| 70 | 69 | 
| 71 #endif  // Body_h | 70 #endif  // Body_h | 
| OLD | NEW | 
|---|