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

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

Issue 1461223002: Implement SVG's transform and effect paint property nodes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix fixed position bug discovered by TienRen Created 5 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 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 eb7e4dd65bc30899dac767e192db2a51b80e3ad4..d786149576b3c8f29d42aaecf9d75700c3d8e842 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h
@@ -8,7 +8,7 @@
namespace blink {
class FrameView;
-class LayoutBoxModelObject;
+class LayoutObject;
struct PaintPropertyTreeBuilderContext;
// This class walks the whole layout tree, beginning from the root FrameView, across
@@ -23,7 +23,7 @@ public:
private:
void walk(FrameView&, const PaintPropertyTreeBuilderContext&);
- void walk(LayoutBoxModelObject&, const PaintPropertyTreeBuilderContext&);
+ void walk(LayoutObject&, const PaintPropertyTreeBuilderContext&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698