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

Unified Diff: third_party/WebKit/Source/core/layout/compositing/CompositingInputsUpdater.h

Issue 1490063002: Implement Paint Containment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix merge Created 5 years 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/compositing/CompositingInputsUpdater.h
diff --git a/third_party/WebKit/Source/core/layout/compositing/CompositingInputsUpdater.h b/third_party/WebKit/Source/core/layout/compositing/CompositingInputsUpdater.h
index 0c646a44f6265444c270440cd00625e22c524f28..d182c9263b12a5ea432cbcbef241ec3f10c42d20 100644
--- a/third_party/WebKit/Source/core/layout/compositing/CompositingInputsUpdater.h
+++ b/third_party/WebKit/Source/core/layout/compositing/CompositingInputsUpdater.h
@@ -35,7 +35,7 @@ private:
: ancestorStackingContext(nullptr)
, enclosingCompositedLayer(nullptr)
, lastScrollingAncestor(nullptr)
- , hasAncestorWithClipOrOverflowClip(false)
+ , hasAncestorWithClipRelatedProperty(false)
, hasAncestorWithClipPath(false)
{
}
@@ -48,7 +48,7 @@ private:
// actually controls the scrolling of this layer, which we find on the
// containing block chain.
PaintLayer* lastScrollingAncestor;
- bool hasAncestorWithClipOrOverflowClip;
+ bool hasAncestorWithClipRelatedProperty;
bool hasAncestorWithClipPath;
};

Powered by Google App Engine
This is Rietveld 408576698