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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutView.cpp

Issue 1331533002: [poc] curve-filter Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix CanvasRenderingContext2D::createPattern crash for #40 Created 4 years, 11 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/LayoutView.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutView.cpp b/third_party/WebKit/Source/core/layout/LayoutView.cpp
index 88186a58e368e7f72fe904e233c96f6eefafdf0e..305016dd0618d054341a52fdbb7f813c1701790d 100644
--- a/third_party/WebKit/Source/core/layout/LayoutView.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutView.cpp
@@ -447,7 +447,7 @@ void LayoutView::setShouldDoFullPaintInvalidationForViewAndAllDescendants()
setShouldDoFullPaintInvalidationForViewAndAllDescendantsInternal(this);
}
-void LayoutView::invalidatePaintForViewAndCompositedLayers()
+void LayoutView::invalidatePaintForViewAndCompositedLayers(bool changeDirectlyCompositedImages)
{
setShouldDoFullPaintInvalidation();
@@ -455,7 +455,7 @@ void LayoutView::invalidatePaintForViewAndCompositedLayers()
DisableCompositingQueryAsserts disabler;
if (compositor()->inCompositingMode())
- compositor()->fullyInvalidatePaint();
+ compositor()->fullyInvalidatePaint(changeDirectlyCompositedImages);
}
void LayoutView::mapToVisibleRectInAncestorSpace(const LayoutBoxModelObject* ancestor, LayoutRect& rect, const PaintInvalidationState* invalidationState) const

Powered by Google App Engine
This is Rietveld 408576698