Chromium Code Reviews

Unified Diff: Source/core/layout/LayoutObject.h

Issue 942963002: Need to invalidate scrollbars in case they get repositioned. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/layout/LayoutObject.h
diff --git a/Source/core/layout/LayoutObject.h b/Source/core/layout/LayoutObject.h
index 230591eeabb1c01d147a9421305e070cd3b2a29b..32631d1ff6c896b35424ded70ec161d740608de6 100644
--- a/Source/core/layout/LayoutObject.h
+++ b/Source/core/layout/LayoutObject.h
@@ -1182,6 +1182,8 @@ protected:
virtual void incrementallyInvalidatePaint(const LayoutLayerModelObject& paintInvalidationContainer, const LayoutRect& oldBounds, const LayoutRect& newBounds, const LayoutPoint& positionFromPaintInvalidationBacking);
void fullyInvalidatePaint(const LayoutLayerModelObject& paintInvalidationContainer, PaintInvalidationReason, const LayoutRect& oldBounds, const LayoutRect& newBounds);
+ virtual bool hasNonCompositedScrollbars() const { return false; }
+
#if ENABLE(ASSERT)
virtual bool paintInvalidationStateIsDirty() const
{

Powered by Google App Engine