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

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: Rebase & remove parens 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 7de2782196fa820234d0b03a93f3845bbfa71378..4400f9ef12e388255b721619c9a83b2f7065df71 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;
}
@@ -1151,7 +1146,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