Chromium Code Reviews| Index: cc/trees/single_thread_proxy.cc |
| diff --git a/cc/trees/single_thread_proxy.cc b/cc/trees/single_thread_proxy.cc |
| index 5d447bfbb30c5f7aa7f7c55223586e459b8fc309..7540528478e8e0404cbb334e66c8cca3f1ca8d38 100644 |
| --- a/cc/trees/single_thread_proxy.cc |
| +++ b/cc/trees/single_thread_proxy.cc |
| @@ -532,7 +532,9 @@ void SingleThreadProxy::CompositeImmediately(base::TimeTicks frame_begin_time) { |
| DebugScopedSetImplThread impl(const_cast<SingleThreadProxy*>(this)); |
| if (layer_tree_host_impl_->settings().impl_side_painting) { |
| layer_tree_host_impl_->ActivateSyncTree(); |
| - layer_tree_host_impl_->active_tree()->UpdateDrawProperties(); |
| + bool update_lcd_text = true; |
|
danakj
2015/02/18 21:51:46
Won't this cause us to check LCD text twice?
enne (OOO)
2015/02/18 22:16:08
Ok, removed.
|
| + layer_tree_host_impl_->active_tree()->UpdateDrawProperties( |
| + update_lcd_text); |
| layer_tree_host_impl_->PrepareTiles(); |
| layer_tree_host_impl_->SynchronouslyInitializeAllTiles(); |
| } |