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

Unified Diff: Source/core/rendering/RenderLayerBacking.cpp

Issue 18539017: Remove ifdefs for scroll position change (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add needs rebaseline expectations Created 7 years, 5 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
« no previous file with comments | « Source/core/core.gyp ('k') | Source/core/rendering/RenderLayerCompositor.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderLayerBacking.cpp
diff --git a/Source/core/rendering/RenderLayerBacking.cpp b/Source/core/rendering/RenderLayerBacking.cpp
index c17383b2a00123ca448f717b1c47525059c73371..3bd58bfd3bdd545c5e2744a986f1e1f1cc46cd6d 100644
--- a/Source/core/rendering/RenderLayerBacking.cpp
+++ b/Source/core/rendering/RenderLayerBacking.cpp
@@ -652,11 +652,6 @@ void RenderLayerBacking::updateGraphicsLayerGeometry()
if (scrollingContentsOffset != m_scrollingContentsLayer->offsetFromRenderer() || scrollSize != m_scrollingContentsLayer->size()) {
bool scrollingCoordinatorHandlesOffset = compositor()->scrollingLayerDidChange(m_owningLayer);
-#ifndef BLINK_SCROLLING_POSITION_NO_OFFSET
- // FIXME: Remove when possible.
- // Only required to stage multi-repo change.
- scrollingCoordinatorHandlesOffset = false;
-#endif
if (scrollingCoordinatorHandlesOffset)
m_scrollingContentsLayer->setPosition(-m_owningLayer->scrollOrigin());
else
« no previous file with comments | « Source/core/core.gyp ('k') | Source/core/rendering/RenderLayerCompositor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698