| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGPath.h
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGPath.h b/third_party/WebKit/Source/core/layout/svg/LayoutSVGPath.h
|
| index 4b39db7b4b03ff214e596a23abb016c5c2c5f164..7b9f622197bd0fc0d1427f21038da25de295ecf1 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGPath.h
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGPath.h
|
| @@ -40,6 +40,12 @@ class LayoutSVGPath final : public LayoutSVGShape {
|
| }
|
|
|
| const char* name() const override { return "LayoutSVGPath"; }
|
| + char objectSize() const override { return sizeof(this); }
|
| + char approximateHeapMemoryUsage() const override {
|
| + int memory = LayoutSVGShape::approximateHeapMemoryUsage();
|
| + // TODO(pdr): Include memory from m_markerPositions.
|
| + return memory;
|
| + }
|
|
|
| private:
|
| void updateShapeFromElement() override;
|
|
|