| Index: cc/trees/layer_tree_host_unittest_record_gpu_histogram.cc
|
| diff --git a/cc/trees/layer_tree_host_unittest_record_gpu_histogram.cc b/cc/trees/layer_tree_host_unittest_record_gpu_histogram.cc
|
| index 765ea63aa0fa2d4c8a041bc1ea555847f4693165..524013048361244ad2be91fcb57bafc325ea6f3e 100644
|
| --- a/cc/trees/layer_tree_host_unittest_record_gpu_histogram.cc
|
| +++ b/cc/trees/layer_tree_host_unittest_record_gpu_histogram.cc
|
| @@ -17,7 +17,7 @@ TEST(LayerTreeHostRecordGpuHistogramTest, SingleThreaded) {
|
| LayerTreeSettings settings;
|
| scoped_ptr<FakeLayerTreeHost> host =
|
| FakeLayerTreeHost::Create(&host_client, &task_graph_runner, settings,
|
| - CompositorMode::SingleThreaded);
|
| + CompositorMode::SINGLE_THREADED);
|
| host->RecordGpuRasterizationHistogram();
|
| EXPECT_FALSE(host->gpu_rasterization_histogram_recorded());
|
| }
|
| @@ -27,7 +27,7 @@ TEST(LayerTreeHostRecordGpuHistogramTest, Threaded) {
|
| TestTaskGraphRunner task_graph_runner;
|
| LayerTreeSettings settings;
|
| scoped_ptr<FakeLayerTreeHost> host = FakeLayerTreeHost::Create(
|
| - &host_client, &task_graph_runner, settings, CompositorMode::Threaded);
|
| + &host_client, &task_graph_runner, settings, CompositorMode::THREADED);
|
| host->RecordGpuRasterizationHistogram();
|
| EXPECT_TRUE(host->gpu_rasterization_histogram_recorded());
|
| }
|
|
|