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

Side by Side Diff: Source/core/animation/css/CSSAnimations.cpp

Issue 65303006: Move TimingFunction.h to platform/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/animation/Timing.h ('k') | Source/core/core.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 29 matching lines...) Expand all
40 #include "core/css/CSSKeyframeRule.h" 40 #include "core/css/CSSKeyframeRule.h"
41 #include "core/css/resolver/StyleResolver.h" 41 #include "core/css/resolver/StyleResolver.h"
42 #include "core/dom/Element.h" 42 #include "core/dom/Element.h"
43 #include "core/dom/PseudoElement.h" 43 #include "core/dom/PseudoElement.h"
44 #include "core/events/ThreadLocalEventNames.h" 44 #include "core/events/ThreadLocalEventNames.h"
45 #include "core/events/TransitionEvent.h" 45 #include "core/events/TransitionEvent.h"
46 #include "core/events/WebKitAnimationEvent.h" 46 #include "core/events/WebKitAnimationEvent.h"
47 #include "core/frame/UseCounter.h" 47 #include "core/frame/UseCounter.h"
48 #include "core/frame/animation/CSSPropertyAnimation.h" 48 #include "core/frame/animation/CSSPropertyAnimation.h"
49 #include "core/platform/animation/CSSAnimationDataList.h" 49 #include "core/platform/animation/CSSAnimationDataList.h"
50 #include "core/platform/animation/TimingFunction.h"
51 #include "core/rendering/RenderObject.h" 50 #include "core/rendering/RenderObject.h"
52 #include "core/rendering/style/KeyframeList.h" 51 #include "core/rendering/style/KeyframeList.h"
52 #include "platform/animation/TimingFunction.h"
53 #include "public/platform/Platform.h" 53 #include "public/platform/Platform.h"
54 #include "wtf/BitArray.h" 54 #include "wtf/BitArray.h"
55 #include "wtf/HashSet.h" 55 #include "wtf/HashSet.h"
56 56
57 namespace WebCore { 57 namespace WebCore {
58 58
59 namespace { 59 namespace {
60 60
61 bool isEarlierPhase(TimedItem::Phase target, TimedItem::Phase reference) 61 bool isEarlierPhase(TimedItem::Phase target, TimedItem::Phase reference)
62 { 62 {
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after
913 CSSPropertyID id = convertToCSSPropertyID(i); 913 CSSPropertyID id = convertToCSSPropertyID(i);
914 if (isAnimatableProperty(id)) 914 if (isAnimatableProperty(id))
915 properties.append(id); 915 properties.append(id);
916 } 916 }
917 propertyShorthand = StylePropertyShorthand(CSSPropertyInvalid, propertie s.begin(), properties.size()); 917 propertyShorthand = StylePropertyShorthand(CSSPropertyInvalid, propertie s.begin(), properties.size());
918 } 918 }
919 return propertyShorthand; 919 return propertyShorthand;
920 } 920 }
921 921
922 } // namespace WebCore 922 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/animation/Timing.h ('k') | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698