| Index: Source/core/svg/SVGGraphicsElement.h
|
| diff --git a/Source/core/svg/SVGGraphicsElement.h b/Source/core/svg/SVGGraphicsElement.h
|
| index ce6658995592ed38be8d15ccd9887bf8560bef92..8d202f63626d8eb9f84cd4e01410f7c0668211dc 100644
|
| --- a/Source/core/svg/SVGGraphicsElement.h
|
| +++ b/Source/core/svg/SVGGraphicsElement.h
|
| @@ -23,6 +23,7 @@
|
|
|
| #include "core/svg/SVGAnimatedTransformList.h"
|
| #include "core/svg/SVGElement.h"
|
| +#include "core/svg/SVGRectTearOff.h"
|
| #include "core/svg/SVGTests.h"
|
|
|
| namespace WebCore {
|
| @@ -46,8 +47,11 @@ public:
|
| virtual AffineTransform animatedLocalTransform() const;
|
| virtual AffineTransform* supplementalTransform() OVERRIDE;
|
|
|
| - virtual SVGRect getBBox();
|
| - SVGRect getStrokeBBox();
|
| + virtual FloatRect getBBox();
|
| + FloatRect getStrokeBBox();
|
| +
|
| + PassRefPtr<SVGRectTearOff> getBBoxFromJavascript();
|
| + PassRefPtr<SVGRectTearOff> getStrokeBBoxFromJavascript();
|
|
|
| // "base class" methods for all the elements which render as paths
|
| virtual void toClipPath(Path&);
|
|
|