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

Unified Diff: Source/core/svg/SVGStyleElement.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/SVGStyleElement.h
diff --git a/Source/core/svg/SVGStyleElement.h b/Source/core/svg/SVGStyleElement.h
index a0e478c55762f04aaf7d31e31a98c2b2431ea1ee..d88a41a381598ab2f4c8ca7c5cf8808d312a0371 100644
--- a/Source/core/svg/SVGStyleElement.h
+++ b/Source/core/svg/SVGStyleElement.h
@@ -67,8 +67,10 @@ private:
virtual bool sheetLoaded() override { return StyleElement::sheetLoaded(document()); }
virtual void startLoadingDynamicSheet() override { StyleElement::startLoadingDynamicSheet(document()); }
virtual Timer<SVGElement>* svgLoadEventTimer() override { return &m_svgLoadEventTimer; }
+ virtual Timer<SVGElement>* svgErrorEventTimer() override { return &m_svgErrorEventTimer; }
Timer<SVGElement> m_svgLoadEventTimer;
+ Timer<SVGElement> m_svgErrorEventTimer;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698