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

Side by Side Diff: third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h

Issue 2368043002: [SPv2] Separate SVG root viewport clip from overflow clip. (Closed)
Patch Set: none Created 4 years, 2 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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PaintPropertyTreeBuilder_h 5 #ifndef PaintPropertyTreeBuilder_h
6 #define PaintPropertyTreeBuilder_h 6 #define PaintPropertyTreeBuilder_h
7 7
8 #include "platform/geometry/LayoutPoint.h" 8 #include "platform/geometry/LayoutPoint.h"
9 #include "platform/graphics/paint/ClipPaintPropertyNode.h" 9 #include "platform/graphics/paint/ClipPaintPropertyNode.h"
10 #include "platform/graphics/paint/EffectPaintPropertyNode.h" 10 #include "platform/graphics/paint/EffectPaintPropertyNode.h"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 private: 84 private:
85 static void updatePaintOffsetTranslation(const LayoutObject&, PaintPropertyT reeBuilderContext&); 85 static void updatePaintOffsetTranslation(const LayoutObject&, PaintPropertyT reeBuilderContext&);
86 static void updateTransform(const LayoutObject&, PaintPropertyTreeBuilderCon text&); 86 static void updateTransform(const LayoutObject&, PaintPropertyTreeBuilderCon text&);
87 static void updateEffect(const LayoutObject&, PaintPropertyTreeBuilderContex t&); 87 static void updateEffect(const LayoutObject&, PaintPropertyTreeBuilderContex t&);
88 static void updateCssClip(const LayoutObject&, PaintPropertyTreeBuilderConte xt&); 88 static void updateCssClip(const LayoutObject&, PaintPropertyTreeBuilderConte xt&);
89 static void updateLocalBorderBoxContext(const LayoutObject&, PaintPropertyTr eeBuilderContext&); 89 static void updateLocalBorderBoxContext(const LayoutObject&, PaintPropertyTr eeBuilderContext&);
90 static void updateScrollbarPaintOffset(const LayoutObject&, const PaintPrope rtyTreeBuilderContext&); 90 static void updateScrollbarPaintOffset(const LayoutObject&, const PaintPrope rtyTreeBuilderContext&);
91 static void updateMainThreadScrollingReasons(const LayoutObject&, PaintPrope rtyTreeBuilderContext&); 91 static void updateMainThreadScrollingReasons(const LayoutObject&, PaintPrope rtyTreeBuilderContext&);
92 static void updateOverflowClip(const LayoutObject&, PaintPropertyTreeBuilder Context&); 92 static void updateOverflowClip(const LayoutObject&, PaintPropertyTreeBuilder Context&);
93 static void updateSvgRootViewportClip(const LayoutObject&, PaintPropertyTree BuilderContext&);
93 static void updatePerspective(const LayoutObject&, PaintPropertyTreeBuilderC ontext&); 94 static void updatePerspective(const LayoutObject&, PaintPropertyTreeBuilderC ontext&);
94 static void updateSvgLocalToBorderBoxTransform(const LayoutObject&, PaintPro pertyTreeBuilderContext&); 95 static void updateSvgLocalToBorderBoxTransform(const LayoutObject&, PaintPro pertyTreeBuilderContext&);
95 static void updateScrollAndScrollTranslation(const LayoutObject&, PaintPrope rtyTreeBuilderContext&); 96 static void updateScrollAndScrollTranslation(const LayoutObject&, PaintPrope rtyTreeBuilderContext&);
96 static void updateOutOfFlowContext(const LayoutObject&, PaintPropertyTreeBui lderContext&); 97 static void updateOutOfFlowContext(const LayoutObject&, PaintPropertyTreeBui lderContext&);
97 }; 98 };
98 99
99 } // namespace blink 100 } // namespace blink
100 101
101 #endif // PaintPropertyTreeBuilder_h 102 #endif // PaintPropertyTreeBuilder_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698