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

Unified Diff: Source/core/wawwa/AnimatableElement.idl

Issue 491053004: Expose Web Animations API to Web Workers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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: Source/core/wawwa/AnimatableElement.idl
diff --git a/Source/bindings/tests/idls/TestInterfaceWillBeGarbageCollected.idl b/Source/core/wawwa/AnimatableElement.idl
similarity index 81%
copy from Source/bindings/tests/idls/TestInterfaceWillBeGarbageCollected.idl
copy to Source/core/wawwa/AnimatableElement.idl
index be955b036e9a15db6af2329cc3ba4a15dc9f73ed..122840767821b75cc3d943333e9c0ee6b8904fb9 100644
--- a/Source/bindings/tests/idls/TestInterfaceWillBeGarbageCollected.idl
+++ b/Source/core/wawwa/AnimatableElement.idl
@@ -28,11 +28,18 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+
[
- Constructor(DOMString str),
- NamedConstructor=TestInterface(DOMString str),
+ Exposed=AnimatableElement,
+ Exposed=Worker,
WillBeGarbageCollected,
-] interface TestInterfaceWillBeGarbageCollected : EventTarget { // Inherit from EventTarget to test order of internal fields
- attribute TestInterfaceWillBeGarbageCollected attr1;
- void func(TestInterfaceWillBeGarbageCollected arg);
+ Constructor(DOMString inputID)
+] interface AnimatableElement {
+ AnimatableElement clone();
+ [RaisesException] MockAnimationPlayer animate(sequence<Dictionary> keyframeDictionaryVector, Dictionary timingInputDictionary, DedicatedWorkerGlobalScope workerGlobalScope);
};
+
+// go/wawwa-design-doc
shans 2014/08/25 11:53:58 It's OK to link to documentation, but it should be
+/*
+
+*/

Powered by Google App Engine
This is Rietveld 408576698