Index: cc/resources/tile_manager_unittest.cc |
diff --git a/cc/resources/tile_manager_unittest.cc b/cc/resources/tile_manager_unittest.cc |
index 4f441b30694e2a32aa3b3f18d368fd8dc0a7d724..19ccf247fa7ff2a899b9090104b6b748db78c602 100644 |
--- a/cc/resources/tile_manager_unittest.cc |
+++ b/cc/resources/tile_manager_unittest.cc |
@@ -127,7 +127,8 @@ class TileManagerTilePriorityQueueTest : public testing::Test { |
host_impl_.pending_tree()->LayerById(id_)); |
// Add tilings/tiles for the layer. |
- host_impl_.pending_tree()->UpdateDrawProperties(); |
+ bool update_lcd_text = false; |
+ host_impl_.pending_tree()->UpdateDrawProperties(update_lcd_text); |
} |
TileManager* tile_manager() { return host_impl_.tile_manager(); } |
@@ -541,7 +542,8 @@ TEST_F(TileManagerTilePriorityQueueTest, ActivationComesBeforeEventually) { |
time_ticks += base::TimeDelta::FromMilliseconds(1); |
host_impl_.SetCurrentBeginFrameArgs( |
CreateBeginFrameArgsForTesting(BEGINFRAME_FROM_HERE, time_ticks)); |
- host_impl_.pending_tree()->UpdateDrawProperties(); |
+ bool update_lcd_text = false; |
+ host_impl_.pending_tree()->UpdateDrawProperties(update_lcd_text); |
host_impl_.SetRequiresHighResToDraw(); |
scoped_ptr<RasterTilePriorityQueue> queue(host_impl_.BuildRasterQueue( |
@@ -771,7 +773,8 @@ TEST_F(TileManagerTilePriorityQueueTest, |
time_ticks += base::TimeDelta::FromMilliseconds(1); |
host_impl_.SetCurrentBeginFrameArgs( |
CreateBeginFrameArgsForTesting(BEGINFRAME_FROM_HERE, time_ticks)); |
- host_impl_.pending_tree()->UpdateDrawProperties(); |
+ bool update_lcd_text = false; |
+ host_impl_.pending_tree()->UpdateDrawProperties(update_lcd_text); |
ActivateTree(); |
SetupPendingTree(pending_pile); |
@@ -909,14 +912,15 @@ TEST_F(TileManagerTilePriorityQueueTest, |
time_ticks += base::TimeDelta::FromMilliseconds(1); |
host_impl_.SetCurrentBeginFrameArgs( |
CreateBeginFrameArgsForTesting(BEGINFRAME_FROM_HERE, time_ticks)); |
- host_impl_.pending_tree()->UpdateDrawProperties(); |
+ bool update_lcd_text = false; |
+ host_impl_.pending_tree()->UpdateDrawProperties(update_lcd_text); |
pending_child_layer->SetOpacity(0.0); |
time_ticks += base::TimeDelta::FromMilliseconds(1); |
host_impl_.SetCurrentBeginFrameArgs( |
CreateBeginFrameArgsForTesting(BEGINFRAME_FROM_HERE, time_ticks)); |
- host_impl_.pending_tree()->UpdateDrawProperties(); |
+ host_impl_.pending_tree()->UpdateDrawProperties(update_lcd_text); |
// Renew all of the tile priorities. |
gfx::Rect viewport(layer_bounds); |