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

Side by Side Diff: Source/core/svg/SVGDocumentExtensions.cpp

Issue 1251983005: Flag to disable SMIL support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: smil not sMIL 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 | « Source/core/svg/SVGDiscardElement.idl ('k') | Source/core/svg/SVGMPathElement.cpp » ('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) 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
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
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 }
OLDNEW
« no previous file with comments | « Source/core/svg/SVGDiscardElement.idl ('k') | Source/core/svg/SVGMPathElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698