Chromium Code Reviews| Index: Source/core/svg/SVGElement.h |
| diff --git a/Source/core/svg/SVGElement.h b/Source/core/svg/SVGElement.h |
| index 92951df696963a191864dfc86d2cb94bd02f2a03..25e58947cd45e19555b8d79c82b01a9ad52c1c85 100644 |
| --- a/Source/core/svg/SVGElement.h |
| +++ b/Source/core/svg/SVGElement.h |
| @@ -103,6 +103,10 @@ public: |
| void sendSVGLoadEventIfPossibleAsynchronously(); |
| void svgLoadEventTimerFired(Timer<SVGElement>*); |
| virtual Timer<SVGElement>* svgLoadEventTimer(); |
| + bool sendSVGErrorEventIfPossible(); |
|
pdr.
2015/03/31 03:01:43
Should this be void instead of bool?
jww
2015/03/31 21:31:42
Yes, although this goes away given fs@'s comments
|
| + void sendSVGErrorEventIfPossibleAsynchronously(); |
| + void svgErrorEventTimerFired(Timer<SVGElement>*); |
| + virtual Timer<SVGElement>* svgErrorEventTimer(); |
|
pdr.
2015/03/31 03:01:43
Can you put the above 4 functions (err, it will be
fs
2015/03/31 09:03:38
Agreed - with the below twist.
jww
2015/03/31 21:31:42
Done.
|
| virtual AffineTransform* animateMotionTransform() { return 0; } |