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

Unified Diff: Source/core/svg/SVGElement.h

Issue 1049513003: Add error dispatch events to SVGStyleElement (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added more tests Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
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; }

Powered by Google App Engine
This is Rietveld 408576698