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

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.h

Issue 2657863004: Move scroll paint property nodes to be owned by the transform tree (Closed)
Patch Set: 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/frame/FrameView.h
diff --git a/third_party/WebKit/Source/core/frame/FrameView.h b/third_party/WebKit/Source/core/frame/FrameView.h
index 66381d55971485e9fe54c7a2e3a90aa60bbeb9ee..9dbff27dbb091230d2bdfbf31fb0d629885bd64f 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.h
+++ b/third_party/WebKit/Source/core/frame/FrameView.h
@@ -714,11 +714,6 @@ class CORE_EXPORT FrameView final
return m_scrollTranslation.get();
}
- void setScroll(PassRefPtr<ScrollPaintPropertyNode> scroll) {
- m_scroll = scroll;
- }
- ScrollPaintPropertyNode* scroll() const { return m_scroll.get(); }
-
void setContentClip(PassRefPtr<ClipPaintPropertyNode> contentClip) {
m_contentClip = contentClip;
}
@@ -1152,7 +1147,6 @@ class CORE_EXPORT FrameView final
// enabled.
RefPtr<TransformPaintPropertyNode> m_preTranslation;
RefPtr<TransformPaintPropertyNode> m_scrollTranslation;
- RefPtr<ScrollPaintPropertyNode> m_scroll;
// The content clip clips the document (= LayoutView) but not the scrollbars.
// TODO(trchen): This will not be needed once settings->rootLayerScrolls() is
// enabled.

Powered by Google App Engine
This is Rietveld 408576698