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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationRequest.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/presentation/PresentationRequest.idl
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationRequest.idl b/third_party/WebKit/Source/modules/presentation/PresentationRequest.idl
index dc921599f8472ae70ba703e59691d5ffe4a7a1e0..4b9e4e1466644430a1d66cb93719778478ea5328 100644
--- a/third_party/WebKit/Source/modules/presentation/PresentationRequest.idl
+++ b/third_party/WebKit/Source/modules/presentation/PresentationRequest.idl
@@ -6,13 +6,14 @@
// https://w3c.github.io/presentation-api/#interface-presentationrequest
[
- Constructor(DOMString url),
+ ActiveScriptWrappable,
ConstructorCallWith=ExecutionContext,
- RaisesException=Constructor,
+ Constructor(DOMString url),
DependentLifetime,
GarbageCollected,
+ MeasureAs=PresentationRequestConstructor,
+ RaisesException=Constructor,
RuntimeEnabled=Presentation,
- MeasureAs=PresentationRequestConstructor
] interface PresentationRequest : EventTarget {
[CallWith=ScriptState, MeasureAs=PresentationRequestStart] Promise<PresentationConnection> start();
[CallWith=ScriptState, MeasureAs=PresentationRequestReconnect] Promise<PresentationConnection> reconnect(DOMString id);

Powered by Google App Engine
This is Rietveld 408576698