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

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

Issue 2798393005: Rewrite references to "wtf/" to "platform/wtf/" in core/animation. (Closed)
Patch Set: Created 3 years, 8 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 * 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 #include "core/dom/Element.h" 57 #include "core/dom/Element.h"
58 #include "core/dom/PseudoElement.h" 58 #include "core/dom/PseudoElement.h"
59 #include "core/dom/StyleEngine.h" 59 #include "core/dom/StyleEngine.h"
60 #include "core/events/AnimationEvent.h" 60 #include "core/events/AnimationEvent.h"
61 #include "core/events/TransitionEvent.h" 61 #include "core/events/TransitionEvent.h"
62 #include "core/frame/UseCounter.h" 62 #include "core/frame/UseCounter.h"
63 #include "core/layout/LayoutObject.h" 63 #include "core/layout/LayoutObject.h"
64 #include "core/paint/PaintLayer.h" 64 #include "core/paint/PaintLayer.h"
65 #include "platform/Histogram.h" 65 #include "platform/Histogram.h"
66 #include "platform/animation/TimingFunction.h" 66 #include "platform/animation/TimingFunction.h"
67 #include "platform/wtf/HashSet.h"
67 #include "public/platform/Platform.h" 68 #include "public/platform/Platform.h"
68 #include "wtf/HashSet.h"
69 69
70 namespace blink { 70 namespace blink {
71 71
72 using PropertySet = HashSet<CSSPropertyID>; 72 using PropertySet = HashSet<CSSPropertyID>;
73 73
74 namespace { 74 namespace {
75 75
76 static StringKeyframeEffectModel* createKeyframeEffectModel( 76 static StringKeyframeEffectModel* createKeyframeEffectModel(
77 StyleResolver* resolver, 77 StyleResolver* resolver,
78 const Element* animatingElement, 78 const Element* animatingElement,
(...skipping 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after
1212 isCustomPropertyHandle); 1212 isCustomPropertyHandle);
1213 } 1213 }
1214 1214
1215 DEFINE_TRACE(CSSAnimations) { 1215 DEFINE_TRACE(CSSAnimations) {
1216 visitor->trace(m_transitions); 1216 visitor->trace(m_transitions);
1217 visitor->trace(m_pendingUpdate); 1217 visitor->trace(m_pendingUpdate);
1218 visitor->trace(m_runningAnimations); 1218 visitor->trace(m_runningAnimations);
1219 } 1219 }
1220 1220
1221 } // namespace blink 1221 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698