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

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

Issue 2465983002: Rename "paint invalidation rect" etc. to "visual rect". (Closed)
Patch Set: - 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. 2 * Copyright (C) 2006 Apple Computer, Inc.
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 LayoutRect&, 51 LayoutRect&,
52 VisualRectFlags = DefaultVisualRectFlags) const final; 52 VisualRectFlags = DefaultVisualRectFlags) const final;
53 53
54 AffineTransform m_localTransform; 54 AffineTransform m_localTransform;
55 55
56 bool isOfType(LayoutObjectType type) const override { 56 bool isOfType(LayoutObjectType type) const override {
57 return type == LayoutObjectSVG || LayoutBlockFlow::isOfType(type); 57 return type == LayoutObjectSVG || LayoutBlockFlow::isOfType(type);
58 } 58 }
59 59
60 private: 60 private:
61 LayoutRect absoluteClippedOverflowRect() const final; 61 LayoutRect absoluteVisualRect() const final;
62 62
63 bool allowsOverflowClip() const final; 63 bool allowsOverflowClip() const final;
64 64
65 void absoluteRects(Vector<IntRect>&, 65 void absoluteRects(Vector<IntRect>&,
66 const LayoutPoint& accumulatedOffset) const final; 66 const LayoutPoint& accumulatedOffset) const final;
67 67
68 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) final; 68 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) final;
69 69
70 bool nodeAtPoint(HitTestResult&, 70 bool nodeAtPoint(HitTestResult&,
71 const HitTestLocation& locationInContainer, 71 const HitTestLocation& locationInContainer,
72 const LayoutPoint& accumulatedOffset, 72 const LayoutPoint& accumulatedOffset,
73 HitTestAction) override; 73 HitTestAction) override;
74 }; 74 };
75 75
76 } // namespace blink 76 } // namespace blink
77 #endif // LayoutSVGBlock_h 77 #endif // LayoutSVGBlock_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698