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

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

Issue 2641173008: [SPv2] Add CSS mask support (Closed)
Patch Set: rebase Created 3 years, 10 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 ALWAYS_INLINE static void updateForObjectLocation( 119 ALWAYS_INLINE static void updateForObjectLocation(
120 const LayoutObject&, 120 const LayoutObject&,
121 PaintPropertyTreeBuilderContext&); 121 PaintPropertyTreeBuilderContext&);
122 ALWAYS_INLINE static void updateTransform(const LayoutObject&, 122 ALWAYS_INLINE static void updateTransform(const LayoutObject&,
123 PaintPropertyTreeBuilderContext&); 123 PaintPropertyTreeBuilderContext&);
124 ALWAYS_INLINE static void updateTransformForNonRootSVG( 124 ALWAYS_INLINE static void updateTransformForNonRootSVG(
125 const LayoutObject&, 125 const LayoutObject&,
126 PaintPropertyTreeBuilderContext&); 126 PaintPropertyTreeBuilderContext&);
127 ALWAYS_INLINE static void updateEffect(const LayoutObject&, 127 ALWAYS_INLINE static void updateEffect(const LayoutObject&,
128 PaintPropertyTreeBuilderContext&); 128 PaintPropertyTreeBuilderContext&);
129 ALWAYS_INLINE static void updateFilter(const LayoutObject&,
130 PaintPropertyTreeBuilderContext&);
129 ALWAYS_INLINE static void updateCssClip(const LayoutObject&, 131 ALWAYS_INLINE static void updateCssClip(const LayoutObject&,
130 PaintPropertyTreeBuilderContext&); 132 PaintPropertyTreeBuilderContext&);
131 ALWAYS_INLINE static void updateLocalBorderBoxContext( 133 ALWAYS_INLINE static void updateLocalBorderBoxContext(
132 const LayoutObject&, 134 const LayoutObject&,
133 PaintPropertyTreeBuilderContext&); 135 PaintPropertyTreeBuilderContext&);
134 ALWAYS_INLINE static void updateScrollbarPaintOffset( 136 ALWAYS_INLINE static void updateScrollbarPaintOffset(
135 const LayoutObject&, 137 const LayoutObject&,
136 PaintPropertyTreeBuilderContext&); 138 PaintPropertyTreeBuilderContext&);
137 ALWAYS_INLINE static void updateOverflowClip( 139 ALWAYS_INLINE static void updateOverflowClip(
138 const LayoutObject&, 140 const LayoutObject&,
139 PaintPropertyTreeBuilderContext&); 141 PaintPropertyTreeBuilderContext&);
140 ALWAYS_INLINE static void updatePerspective(const LayoutObject&, 142 ALWAYS_INLINE static void updatePerspective(const LayoutObject&,
141 PaintPropertyTreeBuilderContext&); 143 PaintPropertyTreeBuilderContext&);
142 ALWAYS_INLINE static void updateSvgLocalToBorderBoxTransform( 144 ALWAYS_INLINE static void updateSvgLocalToBorderBoxTransform(
143 const LayoutObject&, 145 const LayoutObject&,
144 PaintPropertyTreeBuilderContext&); 146 PaintPropertyTreeBuilderContext&);
145 ALWAYS_INLINE static void updateScrollAndScrollTranslation( 147 ALWAYS_INLINE static void updateScrollAndScrollTranslation(
146 const LayoutObject&, 148 const LayoutObject&,
147 PaintPropertyTreeBuilderContext&); 149 PaintPropertyTreeBuilderContext&);
148 ALWAYS_INLINE static void updateOutOfFlowContext( 150 ALWAYS_INLINE static void updateOutOfFlowContext(
149 const LayoutObject&, 151 const LayoutObject&,
150 PaintPropertyTreeBuilderContext&); 152 PaintPropertyTreeBuilderContext&);
151 }; 153 };
152 154
153 } // namespace blink 155 } // namespace blink
154 156
155 #endif // PaintPropertyTreeBuilder_h 157 #endif // PaintPropertyTreeBuilder_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698