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

Unified Diff: Source/modules/navigatorconnect/ServicePort.idl

Issue 1191393003: Update client side navigator.connect API to use ServicePortCollection [1/3] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@serviceport
Patch Set: address more comments Created 5 years, 6 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: 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();
+};
« no previous file with comments | « Source/modules/navigatorconnect/ServicePort.cpp ('k') | Source/modules/navigatorconnect/ServicePortCollection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698