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

Unified Diff: third_party/WebKit/Source/core/dom/Document.h

Issue 2490163002: Reland of "Tracking reference filter mutation via SVGElementProxy" (Closed)
Patch Set: Fix double observer unregistration; simplify scope selection; add tests 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/dom/Document.h
diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h
index f5397a41c0991ef5df0f81d78e57cf38b0bf6c4d..1f6e73ad1041105173d33a0cdc08b3a7f7a0f57d 100644
--- a/third_party/WebKit/Source/core/dom/Document.h
+++ b/third_party/WebKit/Source/core/dom/Document.h
@@ -471,11 +471,6 @@ class CORE_EXPORT Document : public ContainerNode,
void scheduleUseShadowTreeUpdate(SVGUseElement&);
void unscheduleUseShadowTreeUpdate(SVGUseElement&);
- // FIXME: SVG filters should change to store the filter on the ComputedStyle
- // instead of the LayoutObject so we can get rid of this hack.
- void scheduleSVGFilterLayerUpdateHack(Element&);
- void unscheduleSVGFilterLayerUpdateHack(Element&);
-
void evaluateMediaQueryList();
FormController& formController();
@@ -1233,10 +1228,6 @@ class CORE_EXPORT Document : public ContainerNode,
DECLARE_VIRTUAL_TRACE_WRAPPERS();
- bool hasSVGFilterElementsRequiringLayerUpdate() const {
- return m_layerUpdateSVGFilterElements.size();
- }
-
AtomicString convertLocalName(const AtomicString&);
void platformColorsChanged();
@@ -1363,8 +1354,6 @@ class CORE_EXPORT Document : public ContainerNode,
void inheritHtmlAndBodyElementStyles(StyleRecalcChange);
- bool dirtyElementsForLayerUpdate();
-
void updateUseShadowTreesIfNeeded();
void evaluateMediaQueryListIfNeeded();
@@ -1645,7 +1634,6 @@ class CORE_EXPORT Document : public ContainerNode,
TaskRunnerTimer<Document> m_didAssociateFormControlsTimer;
HeapHashSet<Member<SVGUseElement>> m_useElementsNeedingUpdate;
- HeapHashSet<Member<Element>> m_layerUpdateSVGFilterElements;
DOMTimerCoordinator m_timers;

Powered by Google App Engine
This is Rietveld 408576698