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

Unified Diff: third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h

Issue 2640863003: Inline PrePaintTreeWalk private methods and static functions (Closed)
Patch Set: ALWAYS_INLINE Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h
diff --git a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h
index 8ef1afb12cbb6d70d42df934bb8f2342bd6fd862..c4386dc28f16417b15beb3c673e7f263c47a8098 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h
@@ -116,32 +116,38 @@ class PaintPropertyTreeBuilder {
PaintPropertyTreeBuilderContext&);
private:
- static void updatePaintOffsetTranslation(const LayoutObject&,
- PaintPropertyTreeBuilderContext&);
- static void updateTransform(const LayoutObject&,
- PaintPropertyTreeBuilderContext&);
- static void updateTransformForNonRootSVG(const LayoutObject&,
- PaintPropertyTreeBuilderContext&);
- static void updateEffect(const LayoutObject&,
- PaintPropertyTreeBuilderContext&);
- static void updateCssClip(const LayoutObject&,
- PaintPropertyTreeBuilderContext&);
- static void updateLocalBorderBoxContext(const LayoutObject&,
- PaintPropertyTreeBuilderContext&);
- static void updateScrollbarPaintOffset(const LayoutObject&,
+ ALWAYS_INLINE static void updatePaintOffsetTranslation(
+ const LayoutObject&,
+ PaintPropertyTreeBuilderContext&);
+ ALWAYS_INLINE static void updateTransform(const LayoutObject&,
+ PaintPropertyTreeBuilderContext&);
+ ALWAYS_INLINE static void updateTransformForNonRootSVG(
+ const LayoutObject&,
+ PaintPropertyTreeBuilderContext&);
+ ALWAYS_INLINE static void updateEffect(const LayoutObject&,
PaintPropertyTreeBuilderContext&);
- static void updateOverflowClip(const LayoutObject&,
- PaintPropertyTreeBuilderContext&);
- static void updatePerspective(const LayoutObject&,
- PaintPropertyTreeBuilderContext&);
- static void updateSvgLocalToBorderBoxTransform(
+ ALWAYS_INLINE static void updateCssClip(const LayoutObject&,
+ PaintPropertyTreeBuilderContext&);
+ ALWAYS_INLINE static void updateLocalBorderBoxContext(
+ const LayoutObject&,
+ PaintPropertyTreeBuilderContext&);
+ ALWAYS_INLINE static void updateScrollbarPaintOffset(
+ const LayoutObject&,
+ PaintPropertyTreeBuilderContext&);
+ ALWAYS_INLINE static void updateOverflowClip(
+ const LayoutObject&,
+ PaintPropertyTreeBuilderContext&);
+ ALWAYS_INLINE static void updatePerspective(const LayoutObject&,
+ PaintPropertyTreeBuilderContext&);
+ ALWAYS_INLINE static void updateSvgLocalToBorderBoxTransform(
+ const LayoutObject&,
+ PaintPropertyTreeBuilderContext&);
+ ALWAYS_INLINE static void updateScrollAndScrollTranslation(
const LayoutObject&,
PaintPropertyTreeBuilderContext&);
- static void updateScrollAndScrollTranslation(
+ ALWAYS_INLINE static void updateOutOfFlowContext(
const LayoutObject&,
PaintPropertyTreeBuilderContext&);
- static void updateOutOfFlowContext(const LayoutObject&,
- PaintPropertyTreeBuilderContext&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698