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

Unified Diff: third_party/WebKit/Source/modules/installedapp/RelatedApplication.idl

Issue 1735033004: Bindings and client interface for the IsAppInstalled API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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: 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;
};

Powered by Google App Engine
This is Rietveld 408576698