mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
5c7929fd2a
This patch is a fairly minimal rename of the AnimationPlayer interface. It leaves a bunch of local variables and helper classes still using the word "player". These will be addressed in subsequent patches that don't require DOM peer review. --HG-- rename : dom/animation/AnimationPlayer.cpp => dom/animation/Animation.cpp rename : dom/animation/AnimationPlayer.h => dom/animation/Animation.h rename : dom/webidl/AnimationPlayer.webidl => dom/webidl/Animation.webidl
18 lines
651 B
Plaintext
18 lines
651 B
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* The origin of this IDL file is
|
|
* http://dev.w3.org/fxtf/web-animations/#the-animatable-interface
|
|
*
|
|
* Copyright © 2014 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
|
|
* liability, trademark and document use rules apply.
|
|
*/
|
|
|
|
[NoInterfaceObject]
|
|
interface Animatable {
|
|
[Func="nsDocument::IsWebAnimationsEnabled"]
|
|
sequence<Animation> getAnimations();
|
|
};
|