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

Unified Diff: third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.idl

Issue 1818223002: Introduce PaintWorkletGlobalScope, rename renderWorklet attribute to paintWorklet. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix interface listing order. Created 4 years, 9 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/csspaint/PaintWorkletGlobalScope.idl
diff --git a/third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.idl b/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.idl
similarity index 41%
copy from third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.idl
copy to third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.idl
index de3c347077d1cb3a25af7ebe3dee8fee2672e001..ee716fa06d6860b62f1265ca9822521d67f5b4d9 100644
--- a/third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.idl
+++ b/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.idl
@@ -2,13 +2,13 @@
// 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/#workletglobalscope
+// https://drafts.css-houdini.org/css-paint-api/#paintworkletglobalscope
[
- Exposed=Worklet,
- Global=Worklet,
- RuntimeEnabled=Worklet,
+ Exposed=PaintWorklet,
+ Global=(Worklet,PaintWorklet),
+ RuntimeEnabled=CSSPaintAPI,
WillBeGarbageCollected,
-] interface WorkletGlobalScope {
- [Replaceable] readonly attribute WorkletConsole console;
+] interface PaintWorkletGlobalScope : WorkletGlobalScope {
+ void registerPaint(DOMString name, Function paintCtor);
};

Powered by Google App Engine
This is Rietveld 408576698