blob: 8cbfeee318569234cd29d03e9aa6d2ff1ef9e6a9 [file] [log] [blame]
// 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();
};