| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceContainer.h
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceContainer.h b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceContainer.h
|
| index 9cb95e271df9b3894133e02a735e2d35113473b2..dc6926022eb7c78c7c2f04a3a615a37a273cd43c 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceContainer.h
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceContainer.h
|
| @@ -22,11 +22,11 @@
|
|
|
| #include "core/layout/svg/LayoutSVGHiddenContainer.h"
|
| #include "core/svg/SVGDocumentExtensions.h"
|
| -#include "core/svg/SVGResourceClient.h"
|
| -#include "platform/heap/Handle.h"
|
|
|
| namespace blink {
|
|
|
| +class SVGElementProxySet;
|
| +
|
| enum LayoutSVGResourceType {
|
| MaskerResourceType,
|
| MarkerResourceType,
|
| @@ -37,8 +37,6 @@ enum LayoutSVGResourceType {
|
| ClipperResourceType
|
| };
|
|
|
| -class PaintLayer;
|
| -
|
| class LayoutSVGResourceContainer : public LayoutSVGHiddenContainer {
|
| public:
|
| explicit LayoutSVGResourceContainer(SVGElement*);
|
| @@ -65,8 +63,6 @@ class LayoutSVGResourceContainer : public LayoutSVGHiddenContainer {
|
| }
|
|
|
| void idChanged();
|
| - void addResourceClient(SVGResourceClient*);
|
| - void removeResourceClient(SVGResourceClient*);
|
|
|
| void invalidateCacheAndMarkForLayout(SubtreeLayoutScope* = nullptr);
|
|
|
| @@ -88,9 +84,11 @@ class LayoutSVGResourceContainer : public LayoutSVGHiddenContainer {
|
| // Used from the invalidateClient/invalidateClients methods from classes,
|
| // inheriting from us.
|
| void markAllClientsForInvalidation(InvalidationMode);
|
| - void markAllResourceClientsForInvalidation();
|
| void markClientForInvalidation(LayoutObject*, InvalidationMode);
|
|
|
| + void notifyContentChanged();
|
| + virtual SVGElementProxySet* elementProxySet() { return nullptr; }
|
| +
|
| void willBeDestroyed() override;
|
|
|
| bool m_isInLayout;
|
| @@ -113,7 +111,6 @@ class LayoutSVGResourceContainer : public LayoutSVGHiddenContainer {
|
| // 22 padding bits available
|
|
|
| HashSet<LayoutObject*> m_clients;
|
| - PersistentHeapHashSet<WeakMember<SVGResourceClient>> m_resourceClients;
|
| };
|
|
|
| inline LayoutSVGResourceContainer* getLayoutSVGResourceContainerById(
|
|
|