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

Unified Diff: Source/core/frame/FrameView.cpp

Issue 212223007: Add DisableCompositingQueryAsserts to FrameView::useSlowRepaints (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/FrameView.cpp
diff --git a/Source/core/frame/FrameView.cpp b/Source/core/frame/FrameView.cpp
index efc69d1805fef3ff12e3cee4af5f3c3c0fb1e527..b1c2c8a854c58b3ee54e4c99ef06808fe1092b91 100644
--- a/Source/core/frame/FrameView.cpp
+++ b/Source/core/frame/FrameView.cpp
@@ -1235,6 +1235,10 @@ void FrameView::adjustMediaTypeForPrinting(bool printing)
bool FrameView::useSlowRepaints(bool considerOverlap) const
{
+ // FIXME: It is incorrect to determine blit-scrolling eligibility using dirty compositing state.
+ // https://code.google.com/p/chromium/issues/detail?id=357345
+ DisableCompositingQueryAsserts disabler;
+
if (m_slowRepaintObjectCount > 0)
return true;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698