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

Unified Diff: Source/platform/scroll/ScrollableArea.cpp

Issue 418483004: Fix scrollbar damage accumulation issue (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: NeedsRebaseline Created 6 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/platform/scroll/ScrollableArea.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/scroll/ScrollableArea.cpp
diff --git a/Source/platform/scroll/ScrollableArea.cpp b/Source/platform/scroll/ScrollableArea.cpp
index a87b7587cb35f5f139ef04989a5184d602a947ff..a3dae50a1d611fd70b218c631302ac3d4490e0c2 100644
--- a/Source/platform/scroll/ScrollableArea.cpp
+++ b/Source/platform/scroll/ScrollableArea.cpp
@@ -47,7 +47,6 @@ namespace blink {
struct SameSizeAsScrollableArea {
virtual ~SameSizeAsScrollableArea();
- unsigned damageBits : 2;
IntRect scrollbarDamage[2];
void* pointer;
unsigned bitfields : 16;
@@ -73,9 +72,7 @@ int ScrollableArea::maxOverlapBetweenPages()
}
ScrollableArea::ScrollableArea()
- : m_hasHorizontalBarDamage(false)
- , m_hasVerticalBarDamage(false)
- , m_constrainsScrollingToContentEdge(true)
+ : m_constrainsScrollingToContentEdge(true)
, m_inLiveResize(false)
, m_verticalScrollElasticity(ScrollElasticityNone)
, m_horizontalScrollElasticity(ScrollElasticityNone)
« no previous file with comments | « Source/platform/scroll/ScrollableArea.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698