| Index: cc/trees/layer_tree_host_unittest_context.cc
|
| diff --git a/cc/trees/layer_tree_host_unittest_context.cc b/cc/trees/layer_tree_host_unittest_context.cc
|
| index c7ce754c43e6ccaa0a1f8e273f757a615dda2807..24da0687b2d0ebc802e84af59d083cd98b406a22 100644
|
| --- a/cc/trees/layer_tree_host_unittest_context.cc
|
| +++ b/cc/trees/layer_tree_host_unittest_context.cc
|
| @@ -787,49 +787,49 @@ class LayerTreeHostContextTestLostContextAndEvictTextures
|
| TEST_F(LayerTreeHostContextTestLostContextAndEvictTextures,
|
| LoseAfterEvict_SingleThread_DirectRenderer) {
|
| lose_after_evict_ = true;
|
| - RunTest(CompositorMode::SingleThreaded, false);
|
| + RunTest(CompositorMode::SINGLE_THREADED, false);
|
| }
|
|
|
| TEST_F(LayerTreeHostContextTestLostContextAndEvictTextures,
|
| LoseAfterEvict_SingleThread_DelegatingRenderer) {
|
| lose_after_evict_ = true;
|
| - RunTest(CompositorMode::SingleThreaded, true);
|
| + RunTest(CompositorMode::SINGLE_THREADED, true);
|
| }
|
|
|
| TEST_F(LayerTreeHostContextTestLostContextAndEvictTextures,
|
| LoseAfterEvict_MultiThread_DirectRenderer) {
|
| lose_after_evict_ = true;
|
| - RunTest(CompositorMode::Threaded, false);
|
| + RunTest(CompositorMode::THREADED, false);
|
| }
|
|
|
| TEST_F(LayerTreeHostContextTestLostContextAndEvictTextures,
|
| LoseAfterEvict_MultiThread_DelegatingRenderer) {
|
| lose_after_evict_ = true;
|
| - RunTest(CompositorMode::Threaded, true);
|
| + RunTest(CompositorMode::THREADED, true);
|
| }
|
|
|
| TEST_F(LayerTreeHostContextTestLostContextAndEvictTextures,
|
| LoseBeforeEvict_SingleThread_DirectRenderer) {
|
| lose_after_evict_ = false;
|
| - RunTest(CompositorMode::SingleThreaded, false);
|
| + RunTest(CompositorMode::SINGLE_THREADED, false);
|
| }
|
|
|
| TEST_F(LayerTreeHostContextTestLostContextAndEvictTextures,
|
| LoseBeforeEvict_SingleThread_DelegatingRenderer) {
|
| lose_after_evict_ = false;
|
| - RunTest(CompositorMode::SingleThreaded, true);
|
| + RunTest(CompositorMode::SINGLE_THREADED, true);
|
| }
|
|
|
| TEST_F(LayerTreeHostContextTestLostContextAndEvictTextures,
|
| LoseBeforeEvict_MultiThread_DirectRenderer) {
|
| lose_after_evict_ = false;
|
| - RunTest(CompositorMode::Threaded, false);
|
| + RunTest(CompositorMode::THREADED, false);
|
| }
|
|
|
| TEST_F(LayerTreeHostContextTestLostContextAndEvictTextures,
|
| LoseBeforeEvict_MultiThread_DelegatingRenderer) {
|
| lose_after_evict_ = false;
|
| - RunTest(CompositorMode::Threaded, true);
|
| + RunTest(CompositorMode::THREADED, true);
|
| }
|
|
|
| class LayerTreeHostContextTestLayersNotified : public LayerTreeHostContextTest {
|
|
|