Index: Source/modules/navigatorconnect/ServicePort.idl |
diff --git a/Source/modules/navigatorconnect/ServicePort.idl b/Source/modules/navigatorconnect/ServicePort.idl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8cbfeee318569234cd29d03e9aa6d2ff1ef9e6a9 |
--- /dev/null |
+++ b/Source/modules/navigatorconnect/ServicePort.idl |
@@ -0,0 +1,17 @@ |
+// 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. |
+ |
+// https://mkruisselbrink.github.io/navigator-connect/#idl-def-ServicePort |
+[ |
+ Exposed=(Window,Worker), |
+ RuntimeEnabled=NavigatorConnect, |
+ GarbageCollected, |
+] interface ServicePort { |
+ readonly attribute DOMString targetURL; |
+ readonly attribute DOMString name; |
+ [CallWith=ScriptState] readonly attribute any data; |
+ [PostMessage, RaisesException, CallWith=ExecutionContext] |
+ void postMessage(SerializedScriptValue message, optional sequence<Transferable> transfer); |
+ void close(); |
+}; |