Index: cc/test/layer_tree_test.cc |
diff --git a/cc/test/layer_tree_test.cc b/cc/test/layer_tree_test.cc |
index 89cc554b9632e9278dc0cb7fc966c7f8653bc70d..a22c7af9183a26656b6570833a9de7b5c20eb21f 100644 |
--- a/cc/test/layer_tree_test.cc |
+++ b/cc/test/layer_tree_test.cc |
@@ -490,7 +490,7 @@ LayerTreeTest::LayerTreeTest() |
// Tests should timeout quickly unless --cc-layer-tree-test-no-timeout was |
// specified (for running in a debugger). |
- CommandLine* command_line = CommandLine::ForCurrentProcess(); |
+ base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
if (!command_line->HasSwitch(switches::kCCLayerTreeTestNoTimeout)) |
timeout_seconds_ = 5; |
} |
@@ -524,10 +524,8 @@ void LayerTreeTest::PostAddAnimationToMainThread( |
Layer* layer_to_receive_animation) { |
main_task_runner_->PostTask( |
FROM_HERE, |
- base::Bind(&LayerTreeTest::DispatchAddAnimation, |
- main_thread_weak_ptr_, |
- base::Unretained(layer_to_receive_animation), |
- 0.000001)); |
+ base::Bind(&LayerTreeTest::DispatchAddAnimation, main_thread_weak_ptr_, |
+ base::Unretained(layer_to_receive_animation), 0.000004)); |
} |
void LayerTreeTest::PostAddInstantAnimationToMainThread( |