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

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

Issue 1150623003: Revamp asynchronous (load) event dispatching for SVG elements (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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.cpp
diff --git a/Source/core/svg/SVGElement.cpp b/Source/core/svg/SVGElement.cpp
index 2a7a3d87a5275e491cb1c2ccc1e19abca5d91a74..ebe93e0fe0d86722838fc44fa45934a0cc417ace 100644
--- a/Source/core/svg/SVGElement.cpp
+++ b/Source/core/svg/SVGElement.cpp
@@ -828,22 +828,6 @@ void SVGElement::sendSVGLoadEventToSelfAndAncestorChainIfPossible()
toSVGElement(parent)->sendSVGLoadEventToSelfAndAncestorChainIfPossible();
}
-void SVGElement::sendSVGLoadEventIfPossibleAsynchronously()
-{
- svgLoadEventTimer()->startOneShot(0, FROM_HERE);
-}
-
-void SVGElement::svgLoadEventTimerFired(Timer<SVGElement>*)
-{
- sendSVGLoadEventIfPossible();
-}
-
-Timer<SVGElement>* SVGElement::svgLoadEventTimer()
-{
- ASSERT_NOT_REACHED();
- return nullptr;
-}
-
void SVGElement::attributeChanged(const QualifiedName& name, const AtomicString& newValue, AttributeModificationReason)
{
Element::attributeChanged(name, newValue);

Powered by Google App Engine
This is Rietveld 408576698