summaryrefslogtreecommitdiff
path: root/Source/WebCore/dom/RequestAnimationFrameCallback.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/dom/RequestAnimationFrameCallback.idl')
-rw-r--r--Source/WebCore/dom/RequestAnimationFrameCallback.idl11
1 files changed, 4 insertions, 7 deletions
diff --git a/Source/WebCore/dom/RequestAnimationFrameCallback.idl b/Source/WebCore/dom/RequestAnimationFrameCallback.idl
index 9c3bfec60..f750aa644 100644
--- a/Source/WebCore/dom/RequestAnimationFrameCallback.idl
+++ b/Source/WebCore/dom/RequestAnimationFrameCallback.idl
@@ -28,10 +28,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-[
- Conditional=REQUEST_ANIMATION_FRAME,
-] callback interface RequestAnimationFrameCallback{
- // highResTime is passed as high resolution timestamp, see
- // http://www.w3.org/TR/hr-time/ for details.
- [Custom] boolean handleEvent(double highResTime);
-};
+// highResTime is passed as high resolution timestamp, see
+// http://www.w3.org/TR/hr-time/ for details.
+
+callback RequestAnimationFrameCallback = void (unrestricted double highResTime);