| Index: third_party/WebKit/Source/core/svg/SVGTextContentElement.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGTextContentElement.h b/third_party/WebKit/Source/core/svg/SVGTextContentElement.h
|
| index a32a3e8ab952980168776720cce345e32b333745..0e05f46c085624f4363b443a5d8bb35e9f1ec8ea 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGTextContentElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGTextContentElement.h
|
| @@ -21,7 +21,6 @@
|
| #ifndef SVGTextContentElement_h
|
| #define SVGTextContentElement_h
|
|
|
| -#include "core/layout/api/LineLayoutItem.h"
|
| #include "core/svg/SVGAnimatedBoolean.h"
|
| #include "core/svg/SVGAnimatedEnumeration.h"
|
| #include "core/svg/SVGAnimatedLength.h"
|
| @@ -32,6 +31,7 @@
|
| namespace blink {
|
|
|
| class ExceptionState;
|
| +class LineLayoutItem;
|
|
|
| enum SVGLengthAdjustType {
|
| SVGLengthAdjustUnknown,
|
| @@ -60,7 +60,7 @@ public:
|
| int getCharNumAtPosition(SVGPointTearOff*, ExceptionState&);
|
| void selectSubString(unsigned charnum, unsigned nchars, ExceptionState&);
|
|
|
| - static SVGTextContentElement* elementFromLineLayoutItem(const LineLayoutItem);
|
| + static SVGTextContentElement* elementFromLineLayoutItem(const LineLayoutItem&);
|
|
|
| SVGAnimatedLength* textLength() { return m_textLength.get(); }
|
| bool textLengthIsSpecifiedByUser() { return m_textLengthIsSpecifiedByUser; }
|
|
|