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

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

Issue 60113005: Enable chromium_code=1 on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: . Created 7 years, 1 month 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/RenderLayerScrollableArea.cpp
diff --git a/Source/core/rendering/RenderLayerScrollableArea.cpp b/Source/core/rendering/RenderLayerScrollableArea.cpp
index d2689a4f0f0f53dbaec48383b9fd718d6cea7ffc..efc2714b98f8475ce3b66d5b75716619a2e1113c 100644
--- a/Source/core/rendering/RenderLayerScrollableArea.cpp
+++ b/Source/core/rendering/RenderLayerScrollableArea.cpp
@@ -1402,7 +1402,7 @@ void RenderLayerScrollableArea::updateNeedsCompositedScrolling()
bool RenderLayerScrollableArea::setNeedsCompositedScrolling(bool needsCompositedScrolling)
Nico 2013/11/06 05:03:14 same ugh, same comment about the next line
{
- if (m_needsCompositedScrolling == needsCompositedScrolling)
+ if (static_cast<bool>(m_needsCompositedScrolling) == needsCompositedScrolling)
return false;
// Count the total number of RenderLayers which need composited scrolling at

Powered by Google App Engine
This is Rietveld 408576698