| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2007 Apple Inc. All rights reserved. | 4 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2014 Google, Inc. | 5 * Copyright (C) 2014 Google, Inc. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 { | 552 { |
| 553 if (rootParent->inDocument()) { | 553 if (rootParent->inDocument()) { |
| 554 SVGDocumentExtensions& svgExtensions = document().accessSVGExtensions(); | 554 SVGDocumentExtensions& svgExtensions = document().accessSVGExtensions(); |
| 555 svgExtensions.removeTimeContainer(this); | 555 svgExtensions.removeTimeContainer(this); |
| 556 svgExtensions.removeSVGRootWithRelativeLengthDescendents(this); | 556 svgExtensions.removeSVGRootWithRelativeLengthDescendents(this); |
| 557 } | 557 } |
| 558 | 558 |
| 559 SVGGraphicsElement::removedFrom(rootParent); | 559 SVGGraphicsElement::removedFrom(rootParent); |
| 560 } | 560 } |
| 561 | 561 |
| 562 SMILTimeContainer* SVGSVGElement::timeContainer() const |
| 563 { |
| 564 return m_timeContainer.get(); |
| 565 } |
| 566 |
| 562 void SVGSVGElement::pauseAnimations() | 567 void SVGSVGElement::pauseAnimations() |
| 563 { | 568 { |
| 564 ASSERT(RuntimeEnabledFeatures::smilEnabled()); | 569 ASSERT(RuntimeEnabledFeatures::smilEnabled()); |
| 565 if (!m_timeContainer->isPaused()) | 570 if (!m_timeContainer->isPaused()) |
| 566 m_timeContainer->pause(); | 571 m_timeContainer->pause(); |
| 567 } | 572 } |
| 568 | 573 |
| 569 void SVGSVGElement::unpauseAnimations() | 574 void SVGSVGElement::unpauseAnimations() |
| 570 { | 575 { |
| 571 ASSERT(RuntimeEnabledFeatures::smilEnabled()); | 576 ASSERT(RuntimeEnabledFeatures::smilEnabled()); |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 visitor->trace(m_width); | 774 visitor->trace(m_width); |
| 770 visitor->trace(m_height); | 775 visitor->trace(m_height); |
| 771 visitor->trace(m_translation); | 776 visitor->trace(m_translation); |
| 772 visitor->trace(m_timeContainer); | 777 visitor->trace(m_timeContainer); |
| 773 visitor->trace(m_viewSpec); | 778 visitor->trace(m_viewSpec); |
| 774 SVGGraphicsElement::trace(visitor); | 779 SVGGraphicsElement::trace(visitor); |
| 775 SVGFitToViewBox::trace(visitor); | 780 SVGFitToViewBox::trace(visitor); |
| 776 } | 781 } |
| 777 | 782 |
| 778 } // namespace blink | 783 } // namespace blink |
| OLD | NEW |