Index: cc/trees/thread_proxy.cc |
diff --git a/cc/trees/thread_proxy.cc b/cc/trees/thread_proxy.cc |
index b72f03cf61cd791c3b75917cdb333d3a880f79e8..a2c5cb424925565d301f8a552a91729fd35cbcec 100644 |
--- a/cc/trees/thread_proxy.cc |
+++ b/cc/trees/thread_proxy.cc |
@@ -1033,8 +1033,11 @@ DrawResult ThreadProxy::DrawSwapInternal(bool forced_draw) { |
impl().timing_history.DidStartDrawing(); |
base::AutoReset<bool> mark_inside(&impl().inside_draw, true); |
- if (impl().layer_tree_host_impl->pending_tree()) |
- impl().layer_tree_host_impl->pending_tree()->UpdateDrawProperties(); |
+ if (impl().layer_tree_host_impl->pending_tree()) { |
+ bool update_lcd_text = false; |
+ impl().layer_tree_host_impl->pending_tree()->UpdateDrawProperties( |
+ update_lcd_text); |
+ } |
// This method is called on a forced draw, regardless of whether we are able |
// to produce a frame, as the calling site on main thread is blocked until its |