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

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

Issue 2401343002: Tracking filter mutation via SVGElementProxy (Closed)
Patch Set: Fix fullscreen 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 415c23bb464010b985f6085b69ac62fb1e8245da..b62ae22030d3d0b824360732d54b075bced9761d 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&);
pdr. 2016/11/02 06:35:22 Woooooooooooooohoooooooooooooo!!!
- 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();
@@ -1356,8 +1347,6 @@ class CORE_EXPORT Document : public ContainerNode,
void inheritHtmlAndBodyElementStyles(StyleRecalcChange);
- bool dirtyElementsForLayerUpdate();
-
void updateUseShadowTreesIfNeeded();
void evaluateMediaQueryListIfNeeded();
@@ -1638,7 +1627,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