Chromium Code Reviews| Index: cc/tiles/tile_manager_perftest.cc |
| diff --git a/cc/tiles/tile_manager_perftest.cc b/cc/tiles/tile_manager_perftest.cc |
| index d9b340d650ef7995b084923dd3c55993f3f7b0ec..c83144e3a6b17c4cf2362c4fdabe043f8c0ed0dc 100644 |
| --- a/cc/tiles/tile_manager_perftest.cc |
| +++ b/cc/tiles/tile_manager_perftest.cc |
| @@ -84,13 +84,6 @@ class FakeTileTaskRunnerImpl : public TileTaskRunner, public TileTaskClient { |
| base::LazyInstance<FakeTileTaskRunnerImpl> g_fake_tile_task_runner = |
| LAZY_INSTANCE_INITIALIZER; |
| -class LayerTreeSettingsWithLargeInterestArea : public LayerTreeSettings { |
|
vmpstr
2015/06/23 16:39:47
This was a part of making impl side painting defau
sohanjg
2015/06/23 17:08:00
There was error in building cc_perftest bcz of thi
|
| - public: |
| - LayerTreeSettingsWithLargeInterestArea() { |
| - tiling_interest_area_viewport_multiplier = 10000; |
| - } |
| -}; |
| - |
| class TileManagerPerfTest : public testing::Test { |
| public: |
| TileManagerPerfTest() |
| @@ -98,7 +91,7 @@ class TileManagerPerfTest : public testing::Test { |
| max_tiles_(10000), |
| id_(7), |
| proxy_(base::ThreadTaskRunnerHandle::Get()), |
| - host_impl_(LayerTreeSettingsWithLargeInterestArea(), |
| + host_impl_(LayerTreeSettings(), |
| &proxy_, |
| &shared_bitmap_manager_, |
| &task_graph_runner_), |