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

Unified Diff: third_party/WebKit/Source/modules/fetch/Body.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/Body.idl
diff --git a/third_party/WebKit/Source/modules/fetch/Body.idl b/third_party/WebKit/Source/modules/fetch/Body.idl
index f943545d5930a24b2fdbf1f6a9190595b36b8d03..ff61e47672322df2488d42ef22f3c7bae3b7ce47 100644
--- a/third_party/WebKit/Source/modules/fetch/Body.idl
+++ b/third_party/WebKit/Source/modules/fetch/Body.idl
@@ -5,10 +5,11 @@
// http://fetch.spec.whatwg.org/#body
typedef object JSON;
[
- Exposed=ServiceWorker,
- NoInterfaceObject,
+ ActiveScriptWrappable,
DependentLifetime,
+ Exposed=ServiceWorker,
GarbageCollected,
+ NoInterfaceObject,
] interface Body {
readonly attribute boolean bodyUsed;
[CallWith=ScriptState] Promise<ArrayBuffer> arrayBuffer();

Powered by Google App Engine
This is Rietveld 408576698