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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/neon-animation/neon-animation-runner-behavior-extracted.js

Issue 1287713002: [MD settings] merge polymer 1.0.11; hack for settings checkbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
1 1 /**
2
3 /**
4 * `Polymer.NeonAnimationRunnerBehavior` adds a method to run animations. 2 * `Polymer.NeonAnimationRunnerBehavior` adds a method to run animations.
5 * 3 *
6 * @polymerBehavior Polymer.NeonAnimationRunnerBehavior 4 * @polymerBehavior Polymer.NeonAnimationRunnerBehavior
7 */ 5 */
8 Polymer.NeonAnimationRunnerBehaviorImpl = { 6 Polymer.NeonAnimationRunnerBehaviorImpl = {
9 7
10 properties: { 8 properties: {
11 9
12 _animationMeta: { 10 _animationMeta: {
13 type: Object, 11 type: Object,
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 if (this._player) { 94 if (this._player) {
97 this._player.cancel(); 95 this._player.cancel();
98 } 96 }
99 } 97 }
100 }; 98 };
101 99
102 /** @polymerBehavior Polymer.NeonAnimationRunnerBehavior */ 100 /** @polymerBehavior Polymer.NeonAnimationRunnerBehavior */
103 Polymer.NeonAnimationRunnerBehavior = [ 101 Polymer.NeonAnimationRunnerBehavior = [
104 Polymer.NeonAnimatableBehavior, 102 Polymer.NeonAnimatableBehavior,
105 Polymer.NeonAnimationRunnerBehaviorImpl 103 Polymer.NeonAnimationRunnerBehaviorImpl
106 ]; 104 ];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698