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

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

Issue 1210073004: Remove some unused code (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 5 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
« no previous file with comments | « no previous file | 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 #include "core/css/CSSValueList.h" 46 #include "core/css/CSSValueList.h"
47 #include "core/css/resolver/CSSToStyleMap.h" 47 #include "core/css/resolver/CSSToStyleMap.h"
48 #include "core/css/resolver/StyleResolver.h" 48 #include "core/css/resolver/StyleResolver.h"
49 #include "core/dom/Element.h" 49 #include "core/dom/Element.h"
50 #include "core/dom/PseudoElement.h" 50 #include "core/dom/PseudoElement.h"
51 #include "core/dom/StyleEngine.h" 51 #include "core/dom/StyleEngine.h"
52 #include "core/events/AnimationEvent.h" 52 #include "core/events/AnimationEvent.h"
53 #include "core/events/TransitionEvent.h" 53 #include "core/events/TransitionEvent.h"
54 #include "core/frame/UseCounter.h" 54 #include "core/frame/UseCounter.h"
55 #include "core/layout/LayoutObject.h" 55 #include "core/layout/LayoutObject.h"
56 #include "core/style/KeyframeList.h"
57 #include "core/paint/DeprecatedPaintLayer.h" 56 #include "core/paint/DeprecatedPaintLayer.h"
58 #include "platform/animation/TimingFunction.h" 57 #include "platform/animation/TimingFunction.h"
59 #include "public/platform/Platform.h" 58 #include "public/platform/Platform.h"
60 #include "wtf/BitArray.h" 59 #include "wtf/BitArray.h"
61 #include "wtf/HashSet.h" 60 #include "wtf/HashSet.h"
62 61
63 namespace blink { 62 namespace blink {
64 63
65 using PropertySet = HashSet<CSSPropertyID>; 64 using PropertySet = HashSet<CSSPropertyID>;
66 65
(...skipping 736 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 visitor->trace(m_activeInterpolationsForAnimations); 802 visitor->trace(m_activeInterpolationsForAnimations);
804 visitor->trace(m_activeInterpolationsForTransitions); 803 visitor->trace(m_activeInterpolationsForTransitions);
805 visitor->trace(m_newAnimations); 804 visitor->trace(m_newAnimations);
806 visitor->trace(m_suppressedAnimations); 805 visitor->trace(m_suppressedAnimations);
807 visitor->trace(m_animationsWithUpdates); 806 visitor->trace(m_animationsWithUpdates);
808 visitor->trace(m_animationsWithStyleUpdates); 807 visitor->trace(m_animationsWithStyleUpdates);
809 #endif 808 #endif
810 } 809 }
811 810
812 } // namespace blink 811 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698