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

Side by Side Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGInline.h

Issue 2000763003: Check subtree paint invalidation when overflow clip status changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz> 2 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz>
3 * Copyright (C) 2006 Apple Computer Inc. 3 * Copyright (C) 2006 Apple Computer Inc.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 FloatRect paintInvalidationRectInLocalSVGCoordinates() const final; 45 FloatRect paintInvalidationRectInLocalSVGCoordinates() const final;
46 46
47 LayoutRect absoluteClippedOverflowRect() const final; 47 LayoutRect absoluteClippedOverflowRect() const final;
48 void mapLocalToAncestor(const LayoutBoxModelObject* ancestor, TransformState &, MapCoordinatesFlags = ApplyContainerFlip) const final; 48 void mapLocalToAncestor(const LayoutBoxModelObject* ancestor, TransformState &, MapCoordinatesFlags = ApplyContainerFlip) const final;
49 const LayoutObject* pushMappingToContainer(const LayoutBoxModelObject* ances torToStopAt, LayoutGeometryMap&) const final; 49 const LayoutObject* pushMappingToContainer(const LayoutBoxModelObject* ances torToStopAt, LayoutGeometryMap&) const final;
50 void absoluteQuads(Vector<FloatQuad>&) const final; 50 void absoluteQuads(Vector<FloatQuad>&) const final;
51 51
52 private: 52 private:
53 InlineFlowBox* createInlineFlowBox() final; 53 InlineFlowBox* createInlineFlowBox() final;
54 54
55 void invalidateTreeIfNeeded(const PaintInvalidationState&) final;
56
57 void willBeDestroyed() final; 55 void willBeDestroyed() final;
58 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) final; 56 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) final;
59 57
60 void addChild(LayoutObject* child, LayoutObject* beforeChild = nullptr) fina l; 58 void addChild(LayoutObject* child, LayoutObject* beforeChild = nullptr) fina l;
61 void removeChild(LayoutObject*) final; 59 void removeChild(LayoutObject*) final;
62 }; 60 };
63 61
64 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGInline, isSVGInline()); 62 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGInline, isSVGInline());
65 63
66 } // namespace blink 64 } // namespace blink
67 65
68 #endif // LayoutSVGInline_H 66 #endif // LayoutSVGInline_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698