Chromium Code Reviews| Index: third_party/WebKit/Source/modules/installedapp/RelatedApplication.idl |
| diff --git a/third_party/WebKit/Source/modules/worklet/Worklet.idl b/third_party/WebKit/Source/modules/installedapp/RelatedApplication.idl |
| similarity index 50% |
| copy from third_party/WebKit/Source/modules/worklet/Worklet.idl |
| copy to third_party/WebKit/Source/modules/installedapp/RelatedApplication.idl |
| index 0744c691c0dd98f411149d5f620b9f71a07f81af..730d61ed19ab9205153c967e6bb23f5feb4e5f89 100644 |
| --- a/third_party/WebKit/Source/modules/worklet/Worklet.idl |
| +++ b/third_party/WebKit/Source/modules/installedapp/RelatedApplication.idl |
| @@ -2,12 +2,10 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -// https://drafts.css-houdini.org/worklets/#worklet |
| - |
| [ |
|
haraken
2016/03/01 02:15:26
Add a link to the spec.
Daniel Nishi
2016/03/01 20:46:20
Done.
|
| - DependentLifetime, |
| GarbageCollected, |
| - RuntimeEnabled=Worklet, |
| -] interface Worklet { |
| - [CallWith=ScriptState] Promise<void> import(DOMString url); |
| +] interface RelatedApplication { |
| + readonly attribute DOMString platform; |
| + readonly attribute DOMString url; |
| + readonly attribute DOMString id; |
| }; |