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

Side by Side Diff: Source/core/layout/svg/LayoutSVGTextPath.cpp

Issue 1033943002: Rename LayoutStyle to papayawhip (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ensureComputedStyle Created 5 years, 8 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org>
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 15 matching lines...) Expand all
26 #include "core/svg/SVGPathElement.h" 26 #include "core/svg/SVGPathElement.h"
27 #include "core/svg/SVGTextPathElement.h" 27 #include "core/svg/SVGTextPathElement.h"
28 28
29 namespace blink { 29 namespace blink {
30 30
31 LayoutSVGTextPath::LayoutSVGTextPath(Element* element) 31 LayoutSVGTextPath::LayoutSVGTextPath(Element* element)
32 : LayoutSVGInline(element) 32 : LayoutSVGInline(element)
33 { 33 {
34 } 34 }
35 35
36 bool LayoutSVGTextPath::isChildAllowed(LayoutObject* child, const LayoutStyle&) const 36 bool LayoutSVGTextPath::isChildAllowed(LayoutObject* child, const ComputedStyle& ) const
37 { 37 {
38 if (child->isText()) 38 if (child->isText())
39 return SVGLayoutSupport::isLayoutableTextNode(child); 39 return SVGLayoutSupport::isLayoutableTextNode(child);
40 40
41 return child->isSVGInline() && !child->isSVGTextPath(); 41 return child->isSVGInline() && !child->isSVGTextPath();
42 } 42 }
43 43
44 Path LayoutSVGTextPath::layoutPath() const 44 Path LayoutSVGTextPath::layoutPath() const
45 { 45 {
46 SVGTextPathElement* textPathElement = toSVGTextPathElement(node()); 46 SVGTextPathElement* textPathElement = toSVGTextPathElement(node());
(...skipping 14 matching lines...) Expand all
61 pathData.transform(pathElement.calculateAnimatedLocalTransform()); 61 pathData.transform(pathElement.calculateAnimatedLocalTransform());
62 return pathData; 62 return pathData;
63 } 63 }
64 64
65 float LayoutSVGTextPath::startOffset() const 65 float LayoutSVGTextPath::startOffset() const
66 { 66 {
67 return toSVGTextPathElement(node())->startOffset()->currentValue()->valueAsP ercentage(); 67 return toSVGTextPathElement(node())->startOffset()->currentValue()->valueAsP ercentage();
68 } 68 }
69 69
70 } 70 }
OLDNEW
« no previous file with comments | « Source/core/layout/svg/LayoutSVGTextPath.h ('k') | Source/core/layout/svg/LayoutSVGTransformableContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698