| Index: ui/file_manager/externs/web_animation.js
|
| diff --git a/ui/file_manager/externs/web_animation.js b/ui/file_manager/externs/web_animation.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a78a8c71ed7184a06f224b54e0c1144ddf43a924
|
| --- /dev/null
|
| +++ b/ui/file_manager/externs/web_animation.js
|
| @@ -0,0 +1,28 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +/**
|
| + * @interface
|
| + * @extends {EventTarget}
|
| + */
|
| +function Animation() {}
|
| +
|
| +/**
|
| + * @param {boolean=} opt_useCapture
|
| + * @override
|
| + */
|
| +Animation.prototype.addEventListener =
|
| + function(type, listener, opt_useCapture) {}
|
| +
|
| +/**
|
| + * @type {!Promise}
|
| + */
|
| +Animation.prototype.finished;
|
| +
|
| +/**
|
| + * @param {!Array} keyframes
|
| + * @param {number|!Object} options
|
| + * @returns {!Animation}
|
| + */
|
| +Element.prototype.animate = function(keyframes, options) {}
|
|
|