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

Unified Diff: third_party/WebKit/Source/core/svg/SVGFilterElement.cpp

Issue 2482353002: Revert of Tracking filter mutation via SVGElementProxy (Closed)
Patch Set: Created 4 years, 1 month 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: third_party/WebKit/Source/core/svg/SVGFilterElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGFilterElement.cpp b/third_party/WebKit/Source/core/svg/SVGFilterElement.cpp
index bdadc5039b374cc17290d0917c1be689dea9646e..a3778e84a47fa8ceb38faba626a5d262e0e46a12 100644
--- a/third_party/WebKit/Source/core/svg/SVGFilterElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGFilterElement.cpp
@@ -25,7 +25,7 @@
#include "core/frame/UseCounter.h"
#include "core/layout/svg/LayoutSVGResourceFilter.h"
-#include "core/svg/SVGElementProxy.h"
+#include "core/svg/SVGResourceClient.h"
namespace blink {
@@ -83,7 +83,7 @@
visitor->trace(m_height);
visitor->trace(m_filterUnits);
visitor->trace(m_primitiveUnits);
- visitor->trace(m_elementProxySet);
+ visitor->trace(m_clientsToAdd);
SVGElement::trace(visitor);
SVGURIReference::trace(visitor);
}
@@ -121,7 +121,13 @@
}
LayoutObject* SVGFilterElement::createLayoutObject(const ComputedStyle&) {
- return new LayoutSVGResourceFilter(this);
+ LayoutSVGResourceFilter* layoutObject = new LayoutSVGResourceFilter(this);
+
+ for (SVGResourceClient* client : m_clientsToAdd)
+ layoutObject->addResourceClient(client);
+ m_clientsToAdd.clear();
+
+ return layoutObject;
}
bool SVGFilterElement::selfHasRelativeLengths() const {
@@ -131,10 +137,14 @@
m_height->currentValue()->isRelative();
}
-SVGElementProxySet& SVGFilterElement::elementProxySet() {
- if (!m_elementProxySet)
- m_elementProxySet = new SVGElementProxySet;
- return *m_elementProxySet;
+void SVGFilterElement::addClient(SVGResourceClient* client) {
+ ASSERT(client);
+ m_clientsToAdd.add(client);
+}
+
+void SVGFilterElement::removeClient(SVGResourceClient* client) {
+ ASSERT(client);
+ m_clientsToAdd.remove(client);
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGFilterElement.h ('k') | third_party/WebKit/Source/core/svg/SVGResourceClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698