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

Unified Diff: third_party/WebKit/Source/core/layout/ClipRectsCache.h

Issue 1907213002: Refactor OverlayScrollbarSizeRelevancy into OverlayScrollbarClipBehavior (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Include -> Exclude Created 4 years, 8 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/layout/ClipRectsCache.h
diff --git a/third_party/WebKit/Source/core/layout/ClipRectsCache.h b/third_party/WebKit/Source/core/layout/ClipRectsCache.h
index b51a39447af556a4532fbbd715726c9275bef11e..ece6c20a3443187a337894602d4fb2bfd0d7c5c6 100644
--- a/third_party/WebKit/Source/core/layout/ClipRectsCache.h
+++ b/third_party/WebKit/Source/core/layout/ClipRectsCache.h
@@ -8,7 +8,7 @@
#include "core/layout/ClipRects.h"
#if ENABLE(ASSERT)
-#include "core/layout/LayoutBox.h" // For OverlayScrollbarSizeRelevancy.
+#include "core/layout/LayoutBox.h" // For OverlayScrollbarClipBehavior.
#endif
namespace blink {
@@ -38,14 +38,14 @@ public:
Entry()
: root(nullptr)
#if ENABLE(ASSERT)
- , scrollbarRelevancy(IgnoreOverlayScrollbarSize)
+ , overlayScrollbarClipBehavior(IgnoreOverlayScrollbarSize)
#endif
{
}
const PaintLayer* root;
RefPtr<ClipRects> clipRects;
#if ENABLE(ASSERT)
- OverlayScrollbarSizeRelevancy scrollbarRelevancy;
+ OverlayScrollbarClipBehavior overlayScrollbarClipBehavior;
#endif
};
Entry& get(ClipRectsCacheSlot slot)

Powered by Google App Engine
This is Rietveld 408576698