OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Inc. All rights reserved. |
3 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org> | 3 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org> |
4 * Copyright (C) 2007 Rob Buis <buis@kde.org> | 4 * Copyright (C) 2007 Rob Buis <buis@kde.org> |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 LayoutSVGResourceContainer* SVGDocumentExtensions::resourceById(const AtomicStri
ng& id) const | 77 LayoutSVGResourceContainer* SVGDocumentExtensions::resourceById(const AtomicStri
ng& id) const |
78 { | 78 { |
79 if (id.isEmpty()) | 79 if (id.isEmpty()) |
80 return nullptr; | 80 return nullptr; |
81 | 81 |
82 return m_resources.get(id); | 82 return m_resources.get(id); |
83 } | 83 } |
84 | 84 |
85 void SVGDocumentExtensions::serviceOnAnimationFrame(Document& document, double m
onotonicAnimationStartTime) | 85 void SVGDocumentExtensions::serviceOnAnimationFrame(Document& document, double m
onotonicAnimationStartTime) |
86 { | 86 { |
87 if (!document.svgExtensions()) | 87 if (!document.svgExtensions() || !RuntimeEnabledFeatures::smilEnabled()) |
88 return; | 88 return; |
89 document.accessSVGExtensions().serviceAnimations(monotonicAnimationStartTime
); | 89 document.accessSVGExtensions().serviceAnimations(monotonicAnimationStartTime
); |
90 } | 90 } |
91 | 91 |
92 void SVGDocumentExtensions::serviceAnimations(double monotonicAnimationStartTime
) | 92 void SVGDocumentExtensions::serviceAnimations(double monotonicAnimationStartTime
) |
93 { | 93 { |
94 WillBeHeapVector<RefPtrWillBeMember<SVGSVGElement>> timeContainers; | 94 WillBeHeapVector<RefPtrWillBeMember<SVGSVGElement>> timeContainers; |
95 copyToVector(m_timeContainers, timeContainers); | 95 copyToVector(m_timeContainers, timeContainers); |
96 for (const auto& container : timeContainers) | 96 for (const auto& container : timeContainers) |
97 container->timeContainer()->serviceAnimations(monotonicAnimationStartTim
e); | 97 container->timeContainer()->serviceAnimations(monotonicAnimationStartTim
e); |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 #if ENABLE(OILPAN) | 357 #if ENABLE(OILPAN) |
358 visitor->trace(m_document); | 358 visitor->trace(m_document); |
359 visitor->trace(m_timeContainers); | 359 visitor->trace(m_timeContainers); |
360 visitor->trace(m_relativeLengthSVGRoots); | 360 visitor->trace(m_relativeLengthSVGRoots); |
361 visitor->trace(m_pendingResources); | 361 visitor->trace(m_pendingResources); |
362 visitor->trace(m_pendingResourcesForRemoval); | 362 visitor->trace(m_pendingResourcesForRemoval); |
363 #endif | 363 #endif |
364 } | 364 } |
365 | 365 |
366 } | 366 } |
OLD | NEW |