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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGSVGElement.cpp

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CORE_EXPORT Created 5 years, 1 month 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
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGSVGElement.h ('k') | third_party/WebKit/Source/core/svg/SVGScriptElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698