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

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

Issue 2484153003: Use an SVGElementProxy in ReferenceClipPathOperation (Closed)
Patch Set: Rebase; fix comments; findElement 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
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGFilterElement.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..3cbf77ed6ed949ff7352c6fbbe1acf40c01d54d3 100644
--- a/third_party/WebKit/Source/core/svg/SVGFilterElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGFilterElement.cpp
@@ -25,7 +25,6 @@
#include "core/frame/UseCounter.h"
#include "core/layout/svg/LayoutSVGResourceFilter.h"
-#include "core/svg/SVGElementProxy.h"
namespace blink {
@@ -83,7 +82,6 @@ DEFINE_TRACE(SVGFilterElement) {
visitor->trace(m_height);
visitor->trace(m_filterUnits);
visitor->trace(m_primitiveUnits);
- visitor->trace(m_elementProxySet);
SVGElement::trace(visitor);
SVGURIReference::trace(visitor);
}
@@ -131,10 +129,4 @@ bool SVGFilterElement::selfHasRelativeLengths() const {
m_height->currentValue()->isRelative();
}
-SVGElementProxySet& SVGFilterElement::elementProxySet() {
- if (!m_elementProxySet)
- m_elementProxySet = new SVGElementProxySet;
- return *m_elementProxySet;
-}
-
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGFilterElement.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698