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 19 matching lines...) Expand all Loading... |
30 #include "core/XLinkNames.h" | 30 #include "core/XLinkNames.h" |
31 #include "core/dom/Document.h" | 31 #include "core/dom/Document.h" |
32 #include "core/dom/IdTargetObserver.h" | 32 #include "core/dom/IdTargetObserver.h" |
33 #include "core/dom/TaskRunnerHelper.h" | 33 #include "core/dom/TaskRunnerHelper.h" |
34 #include "core/events/Event.h" | 34 #include "core/events/Event.h" |
35 #include "core/events/EventListener.h" | 35 #include "core/events/EventListener.h" |
36 #include "core/svg/SVGSVGElement.h" | 36 #include "core/svg/SVGSVGElement.h" |
37 #include "core/svg/SVGURIReference.h" | 37 #include "core/svg/SVGURIReference.h" |
38 #include "core/svg/animation/SMILTimeContainer.h" | 38 #include "core/svg/animation/SMILTimeContainer.h" |
39 #include "platform/heap/Handle.h" | 39 #include "platform/heap/Handle.h" |
40 #include "wtf/MathExtras.h" | 40 #include "platform/wtf/MathExtras.h" |
41 #include "wtf/StdLibExtras.h" | 41 #include "platform/wtf/StdLibExtras.h" |
42 #include "wtf/Vector.h" | 42 #include "platform/wtf/Vector.h" |
43 | 43 |
44 namespace blink { | 44 namespace blink { |
45 | 45 |
46 class RepeatEvent final : public Event { | 46 class RepeatEvent final : public Event { |
47 public: | 47 public: |
48 static RepeatEvent* Create(const AtomicString& type, int repeat) { | 48 static RepeatEvent* Create(const AtomicString& type, int repeat) { |
49 return new RepeatEvent(type, false, false, repeat); | 49 return new RepeatEvent(type, false, false, repeat); |
50 } | 50 } |
51 | 51 |
52 ~RepeatEvent() override {} | 52 ~RepeatEvent() override {} |
(...skipping 1228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1281 visitor->Trace(target_element_); | 1281 visitor->Trace(target_element_); |
1282 visitor->Trace(target_id_observer_); | 1282 visitor->Trace(target_id_observer_); |
1283 visitor->Trace(time_container_); | 1283 visitor->Trace(time_container_); |
1284 visitor->Trace(conditions_); | 1284 visitor->Trace(conditions_); |
1285 visitor->Trace(sync_base_dependents_); | 1285 visitor->Trace(sync_base_dependents_); |
1286 SVGElement::Trace(visitor); | 1286 SVGElement::Trace(visitor); |
1287 SVGTests::Trace(visitor); | 1287 SVGTests::Trace(visitor); |
1288 } | 1288 } |
1289 | 1289 |
1290 } // namespace blink | 1290 } // namespace blink |
OLD | NEW |