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

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: fix windows build. Created 4 years, 11 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/TransformValue.idl b/third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.idl
similarity index 56%
copy from third_party/WebKit/Source/core/css/cssom/TransformValue.idl
copy to third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.idl
index d196b7c20b2016af765e5905807ca9e1bcd9f69a..5285de6b3e6d3c34e94dfd59781d31484149ccda 100644
--- a/third_party/WebKit/Source/core/css/cssom/TransformValue.idl
+++ b/third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.idl
@@ -3,8 +3,9 @@
// found in the LICENSE file.
haraken 2016/01/12 00:38:49 Can we add a link to the spec?
ikilpatrick 2016/01/12 04:11:24 Done.
[
- Constructor(),
- RuntimeEnabled=CSSTypedOM
-] interface TransformValue : StyleValue {
- boolean is2D();
+ Exposed=Worklet,
+ Global=Worklet,
+ RuntimeEnabled=Worklet,
+ WillBeGarbageCollected,
+] interface WorkletGlobalScope {
};

Powered by Google App Engine
This is Rietveld 408576698