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

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

Issue 2361973003: Reduce includes of some SVG*TearOff types (Closed)
Patch Set: Rebase Created 4 years, 2 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
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 24 matching lines...) Expand all
35 #include "core/frame/Deprecation.h" 35 #include "core/frame/Deprecation.h"
36 #include "core/frame/FrameView.h" 36 #include "core/frame/FrameView.h"
37 #include "core/frame/LocalFrame.h" 37 #include "core/frame/LocalFrame.h"
38 #include "core/layout/LayoutObject.h" 38 #include "core/layout/LayoutObject.h"
39 #include "core/layout/svg/LayoutSVGModelObject.h" 39 #include "core/layout/svg/LayoutSVGModelObject.h"
40 #include "core/layout/svg/LayoutSVGRoot.h" 40 #include "core/layout/svg/LayoutSVGRoot.h"
41 #include "core/layout/svg/LayoutSVGViewportContainer.h" 41 #include "core/layout/svg/LayoutSVGViewportContainer.h"
42 #include "core/page/FrameTree.h" 42 #include "core/page/FrameTree.h"
43 #include "core/svg/SVGAngleTearOff.h" 43 #include "core/svg/SVGAngleTearOff.h"
44 #include "core/svg/SVGDocumentExtensions.h" 44 #include "core/svg/SVGDocumentExtensions.h"
45 #include "core/svg/SVGLengthTearOff.h"
45 #include "core/svg/SVGMatrixTearOff.h" 46 #include "core/svg/SVGMatrixTearOff.h"
46 #include "core/svg/SVGNumberTearOff.h" 47 #include "core/svg/SVGNumberTearOff.h"
48 #include "core/svg/SVGPointTearOff.h"
47 #include "core/svg/SVGPreserveAspectRatio.h" 49 #include "core/svg/SVGPreserveAspectRatio.h"
48 #include "core/svg/SVGRectTearOff.h" 50 #include "core/svg/SVGRectTearOff.h"
49 #include "core/svg/SVGTransform.h" 51 #include "core/svg/SVGTransform.h"
50 #include "core/svg/SVGTransformList.h" 52 #include "core/svg/SVGTransformList.h"
51 #include "core/svg/SVGTransformTearOff.h" 53 #include "core/svg/SVGTransformTearOff.h"
52 #include "core/svg/SVGViewElement.h" 54 #include "core/svg/SVGViewElement.h"
53 #include "core/svg/SVGViewSpec.h" 55 #include "core/svg/SVGViewSpec.h"
54 #include "core/svg/animation/SMILTimeContainer.h" 56 #include "core/svg/animation/SMILTimeContainer.h"
55 #include "platform/LengthFunctions.h" 57 #include "platform/LengthFunctions.h"
56 #include "platform/geometry/FloatRect.h" 58 #include "platform/geometry/FloatRect.h"
(...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 visitor->trace(m_width); 758 visitor->trace(m_width);
757 visitor->trace(m_height); 759 visitor->trace(m_height);
758 visitor->trace(m_translation); 760 visitor->trace(m_translation);
759 visitor->trace(m_timeContainer); 761 visitor->trace(m_timeContainer);
760 visitor->trace(m_viewSpec); 762 visitor->trace(m_viewSpec);
761 SVGGraphicsElement::trace(visitor); 763 SVGGraphicsElement::trace(visitor);
762 SVGFitToViewBox::trace(visitor); 764 SVGFitToViewBox::trace(visitor);
763 } 765 }
764 766
765 } // namespace blink 767 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGSVGElement.h ('k') | third_party/WebKit/Source/core/svg/SVGTextContentElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698