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

Unified Diff: third_party/WebKit/Source/modules/fetch/Response.idl

Issue 1805843002: [v8 gc] Introduce a base class for all objects that can have pending activity (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updates Created 4 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
Index: third_party/WebKit/Source/modules/fetch/Response.idl
diff --git a/third_party/WebKit/Source/modules/fetch/Response.idl b/third_party/WebKit/Source/modules/fetch/Response.idl
index cd8a275e7e88674b174419930126c1e34b5af5e4..afc333197a084c81df0f772308bd957d76ed1bcb 100644
--- a/third_party/WebKit/Source/modules/fetch/Response.idl
+++ b/third_party/WebKit/Source/modules/fetch/Response.idl
@@ -7,13 +7,14 @@
enum ResponseType { "basic", "cors", "default", "error", "opaque", "opaqueredirect" };
[
+ ActiveScriptWrappable,
// TODO(yhirano): We use "any" for body because the IDL processor doesn't
// recognize ReadableStream implemented with V8 extras. Fix it.
Constructor(optional any body, optional Dictionary responseInitDict),
ConstructorCallWith=ScriptState,
+ DependentLifetime,
Exposed=(Window,Worker),
RaisesException=Constructor,
- DependentLifetime,
GarbageCollected,
] interface Response {
[CallWith=ExecutionContext] static Response error();

Powered by Google App Engine
This is Rietveld 408576698