Chromium Code Reviews| Index: third_party/WebKit/Source/modules/ballista/Actions.idl |
| diff --git a/third_party/WebKit/Source/modules/ballista/Actions.idl b/third_party/WebKit/Source/modules/ballista/Actions.idl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b7e111947d80664550ba34a1f23c45dbb9b2217f |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/modules/ballista/Actions.idl |
| @@ -0,0 +1,16 @@ |
| +// Copyright 2016 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. |
| + |
| +// TODO(mgiuca): Add spec URL here. |
|
Sam McNally
2016/04/13 04:32:35
How about a link to the github repo for now?
Matt Giuca
2016/04/13 05:43:02
Done.
|
| + |
| +[ |
| + GarbageCollected, |
| + NoInterfaceObject, |
| + RuntimeEnabled=Ballista, |
| +] interface Actions { |
| + [CallWith=ScriptState] Promise<undefined> share ( |
| + DOMString title, |
| + DOMString text |
| + ); |
| +}; |