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

Unified Diff: Source/core/rendering/compositing/CompositedLayerMapping.h

Issue 303253004: Allow proper highlighting on universal overflow scroll. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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: Source/core/rendering/compositing/CompositedLayerMapping.h
diff --git a/Source/core/rendering/compositing/CompositedLayerMapping.h b/Source/core/rendering/compositing/CompositedLayerMapping.h
index 62873b7a8d8ea465acc5c312d7805e3da56355e9..a68cfe29679ad7b1db9a3d41fc008ef2bfc96014 100644
--- a/Source/core/rendering/compositing/CompositedLayerMapping.h
+++ b/Source/core/rendering/compositing/CompositedLayerMapping.h
@@ -206,6 +206,8 @@ public:
// If there is a squashed layer painting into this CLM that is an ancestor of the given RenderObject, return it. Otherwise return 0.
const GraphicsLayerPaintInfo* containingSquashedLayer(const RenderObject*);
+ void updateScrollingContentsForSelectionGaps(const IntRect& blockSelectionGapsBounds);
+
private:
static const GraphicsLayerPaintInfo* containingSquashedLayer(const RenderObject*, const Vector<GraphicsLayerPaintInfo>& layers);
@@ -398,6 +400,7 @@ private:
bool m_backgroundLayerPaintsFixedRootBackground : 1;
bool m_needToUpdateGraphicsLayer : 1;
bool m_needToUpdateGraphicsLayerOfAllDecendants : 1;
+ bool m_scrollingContentsAreEmpty : 1;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698