summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/contacts_picker/contact_info.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/contacts_picker/contact_info.idl')
-rw-r--r--chromium/third_party/blink/renderer/modules/contacts_picker/contact_info.idl15
1 files changed, 15 insertions, 0 deletions
diff --git a/chromium/third_party/blink/renderer/modules/contacts_picker/contact_info.idl b/chromium/third_party/blink/renderer/modules/contacts_picker/contact_info.idl
new file mode 100644
index 00000000000..b9a5c45cf8a
--- /dev/null
+++ b/chromium/third_party/blink/renderer/modules/contacts_picker/contact_info.idl
@@ -0,0 +1,15 @@
+// Copyright 2018 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://github.com/beverloo/contact-api
+
+[
+ SecureContext,
+ Exposed=Window,
+ RuntimeEnabled=ContactsManager
+] interface ContactInfo {
+ readonly attribute FrozenArray<DOMString>? name;
+ readonly attribute FrozenArray<DOMString>? email;
+ readonly attribute FrozenArray<DOMString>? tel;
+};