| Index: third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayer.cpp b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| index c001d1c055d3172fd41b649ec6e717bd49b82f3d..7e3d41e753e542a54350851eebfce9f711cf1885 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| @@ -2915,14 +2915,14 @@ PaintTiming* PaintLayer::paintTiming()
|
| return nullptr;
|
| }
|
|
|
| +#if CHECK_DISPLAY_ITEM_CLIENT_ALIVENESS
|
| void PaintLayer::endShouldKeepAliveAllClientsRecursive()
|
| {
|
| for (PaintLayer* child = firstChild(); child; child = child->nextSibling())
|
| child->endShouldKeepAliveAllClientsRecursive();
|
| -#if CHECK_DISPLAY_ITEM_CLIENT_ALIVENESS
|
| DisplayItemClient::endShouldKeepAliveAllClients(this);
|
| -#endif
|
| }
|
| +#endif
|
|
|
| DisableCompositingQueryAsserts::DisableCompositingQueryAsserts()
|
| : m_disabler(gCompositingQueryMode, CompositingQueriesAreAllowed) { }
|
|
|