| OLD | NEW |
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "cc/trees/layer_tree_host.h" | 5 #include "cc/trees/layer_tree_host.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <algorithm> | 10 #include <algorithm> |
| 11 | 11 |
| 12 #include "base/auto_reset.h" | 12 #include "base/auto_reset.h" |
| 13 #include "base/location.h" | 13 #include "base/location.h" |
| 14 #include "base/memory/ptr_util.h" | 14 #include "base/memory/ptr_util.h" |
| 15 #include "base/single_thread_task_runner.h" | 15 #include "base/single_thread_task_runner.h" |
| 16 #include "base/strings/stringprintf.h" |
| 16 #include "base/synchronization/lock.h" | 17 #include "base/synchronization/lock.h" |
| 17 #include "base/threading/thread_task_runner_handle.h" | 18 #include "base/threading/thread_task_runner_handle.h" |
| 18 #include "cc/animation/timing_function.h" | 19 #include "cc/animation/timing_function.h" |
| 19 #include "cc/debug/frame_rate_counter.h" | 20 #include "cc/debug/frame_rate_counter.h" |
| 20 #include "cc/input/scroll_elasticity_helper.h" | 21 #include "cc/input/scroll_elasticity_helper.h" |
| 21 #include "cc/layers/content_layer_client.h" | 22 #include "cc/layers/content_layer_client.h" |
| 22 #include "cc/layers/layer_impl.h" | 23 #include "cc/layers/layer_impl.h" |
| 23 #include "cc/layers/painted_scrollbar_layer.h" | 24 #include "cc/layers/painted_scrollbar_layer.h" |
| 24 #include "cc/layers/picture_layer.h" | 25 #include "cc/layers/picture_layer.h" |
| 25 #include "cc/layers/solid_color_layer.h" | 26 #include "cc/layers/solid_color_layer.h" |
| (...skipping 6968 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6994 EndTest(); | 6995 EndTest(); |
| 6995 } | 6996 } |
| 6996 | 6997 |
| 6997 void AfterTest() override {} | 6998 void AfterTest() override {} |
| 6998 }; | 6999 }; |
| 6999 | 7000 |
| 7000 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestSubmitFrameResources); | 7001 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostTestSubmitFrameResources); |
| 7001 | 7002 |
| 7002 } // namespace | 7003 } // namespace |
| 7003 } // namespace cc | 7004 } // namespace cc |
| OLD | NEW |