| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 #include "gen/sky/core/StylePropertyShorthand.h" | 34 #include "gen/sky/core/StylePropertyShorthand.h" |
| 35 #include "sky/engine/core/animation/ActiveAnimations.h" | 35 #include "sky/engine/core/animation/ActiveAnimations.h" |
| 36 #include "sky/engine/core/animation/AnimationTimeline.h" | 36 #include "sky/engine/core/animation/AnimationTimeline.h" |
| 37 #include "sky/engine/core/animation/KeyframeEffectModel.h" | 37 #include "sky/engine/core/animation/KeyframeEffectModel.h" |
| 38 #include "sky/engine/core/animation/LegacyStyleInterpolation.h" | 38 #include "sky/engine/core/animation/LegacyStyleInterpolation.h" |
| 39 #include "sky/engine/core/animation/css/CSSAnimatableValueFactory.h" | 39 #include "sky/engine/core/animation/css/CSSAnimatableValueFactory.h" |
| 40 #include "sky/engine/core/animation/css/CSSPropertyEquality.h" | 40 #include "sky/engine/core/animation/css/CSSPropertyEquality.h" |
| 41 #include "sky/engine/core/css/CSSPropertyMetadata.h" | 41 #include "sky/engine/core/css/CSSPropertyMetadata.h" |
| 42 #include "sky/engine/core/css/CSSValueList.h" | 42 #include "sky/engine/core/css/CSSValueList.h" |
| 43 #include "sky/engine/core/css/StyleKeyframe.h" | |
| 44 #include "sky/engine/core/css/StyleRuleKeyframes.h" | |
| 45 #include "sky/engine/core/dom/Element.h" | 43 #include "sky/engine/core/dom/Element.h" |
| 46 #include "sky/engine/core/events/AnimationEvent.h" | 44 #include "sky/engine/core/events/AnimationEvent.h" |
| 47 #include "sky/engine/core/events/TransitionEvent.h" | 45 #include "sky/engine/core/events/TransitionEvent.h" |
| 48 #include "sky/engine/core/rendering/RenderLayer.h" | 46 #include "sky/engine/core/rendering/RenderLayer.h" |
| 49 #include "sky/engine/core/rendering/RenderObject.h" | 47 #include "sky/engine/core/rendering/RenderObject.h" |
| 50 #include "sky/engine/core/rendering/style/KeyframeList.h" | 48 #include "sky/engine/core/rendering/style/KeyframeList.h" |
| 51 #include "sky/engine/platform/animation/TimingFunction.h" | 49 #include "sky/engine/platform/animation/TimingFunction.h" |
| 52 #include "sky/engine/public/platform/Platform.h" | 50 #include "sky/engine/public/platform/Platform.h" |
| 53 #include "sky/engine/wtf/BitArray.h" | 51 #include "sky/engine/wtf/BitArray.h" |
| 54 #include "sky/engine/wtf/HashSet.h" | 52 #include "sky/engine/wtf/HashSet.h" |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 case CSSPropertyTransitionDuration: | 433 case CSSPropertyTransitionDuration: |
| 436 case CSSPropertyTransitionProperty: | 434 case CSSPropertyTransitionProperty: |
| 437 case CSSPropertyTransitionTimingFunction: | 435 case CSSPropertyTransitionTimingFunction: |
| 438 return false; | 436 return false; |
| 439 default: | 437 default: |
| 440 return true; | 438 return true; |
| 441 } | 439 } |
| 442 } | 440 } |
| 443 | 441 |
| 444 } // namespace blink | 442 } // namespace blink |
| OLD | NEW |