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

Unified Diff: third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.idl

Issue 1535943005: Initial implementation of bindings and basic classes for worklets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 12 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/worklet/WorkletGlobalScope.idl
diff --git a/third_party/WebKit/Source/core/css/cssom/NumberValue.idl b/third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.idl
similarity index 56%
copy from third_party/WebKit/Source/core/css/cssom/NumberValue.idl
copy to third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.idl
index 57e90f6a63ebdc05e653d11c08509bcf37dfb716..43d5efde1d089b4582b646dad02eb4d813b002df 100644
--- a/third_party/WebKit/Source/core/css/cssom/NumberValue.idl
+++ b/third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.idl
@@ -3,8 +3,9 @@
// found in the LICENSE file.
[
- Constructor(double value),
- RuntimeEnabled=CSSTypedOM
-] interface NumberValue : StyleValue {
- attribute double value;
+ Exposed=Worklet,
+ Global=Worklet,
+ RuntimeEnabled=Worklet,
+ WillBeGarbageCollected,
+] interface WorkletGlobalScope {
};

Powered by Google App Engine
This is Rietveld 408576698