OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 25 matching lines...) Expand all Loading... |
36 #include "core/frame/UseCounter.h" | 36 #include "core/frame/UseCounter.h" |
37 #include "core/svg/SVGDocumentExtensions.h" | 37 #include "core/svg/SVGDocumentExtensions.h" |
38 #include "core/svg/SVGSVGElement.h" | 38 #include "core/svg/SVGSVGElement.h" |
39 #include "core/svg/SVGURIReference.h" | 39 #include "core/svg/SVGURIReference.h" |
40 #include "core/svg/animation/SMILTimeContainer.h" | 40 #include "core/svg/animation/SMILTimeContainer.h" |
41 #include "platform/FloatConversion.h" | 41 #include "platform/FloatConversion.h" |
42 #include "platform/heap/Handle.h" | 42 #include "platform/heap/Handle.h" |
43 #include "wtf/MathExtras.h" | 43 #include "wtf/MathExtras.h" |
44 #include "wtf/StdLibExtras.h" | 44 #include "wtf/StdLibExtras.h" |
45 #include "wtf/Vector.h" | 45 #include "wtf/Vector.h" |
| 46 #include <algorithm> |
46 | 47 |
47 namespace blink { | 48 namespace blink { |
48 | 49 |
49 class RepeatEvent final : public Event { | 50 class RepeatEvent final : public Event { |
50 public: | 51 public: |
51 static PassRefPtrWillBeRawPtr<RepeatEvent> create(const AtomicString& type,
int repeat) | 52 static PassRefPtrWillBeRawPtr<RepeatEvent> create(const AtomicString& type,
int repeat) |
52 { | 53 { |
53 return adoptRefWillBeNoop(new RepeatEvent(type, false, false, repeat)); | 54 return adoptRefWillBeNoop(new RepeatEvent(type, false, false, repeat)); |
54 } | 55 } |
55 | 56 |
(...skipping 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1363 visitor->trace(m_targetElement); | 1364 visitor->trace(m_targetElement); |
1364 visitor->trace(m_timeContainer); | 1365 visitor->trace(m_timeContainer); |
1365 visitor->trace(m_conditions); | 1366 visitor->trace(m_conditions); |
1366 visitor->trace(m_syncBaseDependents); | 1367 visitor->trace(m_syncBaseDependents); |
1367 #endif | 1368 #endif |
1368 SVGElement::trace(visitor); | 1369 SVGElement::trace(visitor); |
1369 SVGTests::trace(visitor); | 1370 SVGTests::trace(visitor); |
1370 } | 1371 } |
1371 | 1372 |
1372 } // namespace blink | 1373 } // namespace blink |
OLD | NEW |