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

Side by Side Diff: Source/core/layout/svg/LayoutSVGResourceContainer.h

Issue 1111223002: Invalidate ancestor resources in when relative lengths change (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: TEs. Created 5 years, 7 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 2 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 || resourceType == RadialGradientResourceType; 59 || resourceType == RadialGradientResourceType;
60 } 60 }
61 61
62 void idChanged(); 62 void idChanged();
63 void addClientLayer(Node*); 63 void addClientLayer(Node*);
64 void addClientLayer(DeprecatedPaintLayer*); 64 void addClientLayer(DeprecatedPaintLayer*);
65 void removeClientLayer(DeprecatedPaintLayer*); 65 void removeClientLayer(DeprecatedPaintLayer*);
66 66
67 void invalidateCacheAndMarkForLayout(SubtreeLayoutScope* = 0); 67 void invalidateCacheAndMarkForLayout(SubtreeLayoutScope* = 0);
68 68
69 static void markForLayoutAndParentResourceInvalidation(LayoutObject*, bool n eedsLayout = true); 69 static void markForLayoutAndParentResourceInvalidation(LayoutObject*, bool n eedsLayout = true, SubtreeLayoutScope* = nullptr);
70 70
71 void clearInvalidationMask() { m_invalidationMask = 0; } 71 void clearInvalidationMask() { m_invalidationMask = 0; }
72 72
73 protected: 73 protected:
74 // When adding modes, make sure we don't overflow m_invalidationMask below. 74 // When adding modes, make sure we don't overflow m_invalidationMask below.
75 enum InvalidationMode { 75 enum InvalidationMode {
76 LayoutAndBoundariesInvalidation = 1 << 0, 76 LayoutAndBoundariesInvalidation = 1 << 0,
77 BoundariesInvalidation = 1 << 1, 77 BoundariesInvalidation = 1 << 1,
78 PaintInvalidation = 1 << 2, 78 PaintInvalidation = 1 << 2,
79 ParentOnlyInvalidation = 1 << 3 79 ParentOnlyInvalidation = 1 << 3
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 } 128 }
129 129
130 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGResourceContainer, isSVGResourceContain er()); 130 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGResourceContainer, isSVGResourceContain er());
131 131
132 #define DEFINE_LAYOUT_SVG_RESOURCE_TYPE_CASTS(thisType, typeName) \ 132 #define DEFINE_LAYOUT_SVG_RESOURCE_TYPE_CASTS(thisType, typeName) \
133 DEFINE_TYPE_CASTS(thisType, LayoutSVGResourceContainer, resource, resource-> resourceType() == typeName, resource.resourceType() == typeName) 133 DEFINE_TYPE_CASTS(thisType, LayoutSVGResourceContainer, resource, resource-> resourceType() == typeName, resource.resourceType() == typeName)
134 134
135 } 135 }
136 136
137 #endif 137 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698