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

Unified Diff: Source/core/rendering/RenderWidget.cpp

Issue 24921002: Make compositingState explicit (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed first round of reviewer comments Created 7 years, 2 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: Source/core/rendering/RenderWidget.cpp
diff --git a/Source/core/rendering/RenderWidget.cpp b/Source/core/rendering/RenderWidget.cpp
index 227d7f8cb44584e647d35cd6cbac1ef7c76d343d..52ccf7abe03a4eba0e62cfb2a74a469ae467d019 100644
--- a/Source/core/rendering/RenderWidget.cpp
+++ b/Source/core/rendering/RenderWidget.cpp
@@ -150,7 +150,7 @@ bool RenderWidget::setWidgetGeometry(const LayoutRect& frame)
if (clipChanged && !frameRectChanged)
m_widget->clipRectChanged();
- if (hasLayer() && layer()->isComposited())
+ if (hasLayer() && layer()->compositingState() == PaintsIntoOwnBacking)
layer()->backing()->updateAfterWidgetResize();
bool boundsChanged = m_widget->frameRect().size() != newFrame.size();

Powered by Google App Engine
This is Rietveld 408576698