| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "cc/layers/content_layer.h" | 8 #include "cc/layers/content_layer.h" |
| 9 #include "cc/layers/delegated_frame_provider.h" | 9 #include "cc/layers/delegated_frame_provider.h" |
| 10 #include "cc/layers/delegated_frame_resource_collection.h" | 10 #include "cc/layers/delegated_frame_resource_collection.h" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 times_to_fail_create_(0), | 59 times_to_fail_create_(0), |
| 60 times_to_lose_during_commit_(0), | 60 times_to_lose_during_commit_(0), |
| 61 times_to_lose_during_draw_(0), | 61 times_to_lose_during_draw_(0), |
| 62 times_to_fail_recreate_(0), | 62 times_to_fail_recreate_(0), |
| 63 times_to_expect_create_failed_(0), | 63 times_to_expect_create_failed_(0), |
| 64 times_create_failed_(0), | 64 times_create_failed_(0), |
| 65 committed_at_least_once_(false), | 65 committed_at_least_once_(false), |
| 66 context_should_support_io_surface_(false), | 66 context_should_support_io_surface_(false), |
| 67 fallback_context_works_(false), | 67 fallback_context_works_(false), |
| 68 async_output_surface_creation_(false) { | 68 async_output_surface_creation_(false) { |
| 69 media::InitializeMediaLibraryForTesting(); | 69 media::InitializeMediaLibrary(); |
| 70 } | 70 } |
| 71 | 71 |
| 72 void LoseContext() { | 72 void LoseContext() { |
| 73 // For sanity-checking tests, they should only call this when the | 73 // For sanity-checking tests, they should only call this when the |
| 74 // context is not lost. | 74 // context is not lost. |
| 75 CHECK(context3d_); | 75 CHECK(context3d_); |
| 76 context3d_->loseContextCHROMIUM(GL_GUILTY_CONTEXT_RESET_ARB, | 76 context3d_->loseContextCHROMIUM(GL_GUILTY_CONTEXT_RESET_ARB, |
| 77 GL_INNOCENT_CONTEXT_RESET_ARB); | 77 GL_INNOCENT_CONTEXT_RESET_ARB); |
| 78 context3d_ = NULL; | 78 context3d_ = NULL; |
| 79 } | 79 } |
| (...skipping 1718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1798 void AfterTest() override {} | 1798 void AfterTest() override {} |
| 1799 | 1799 |
| 1800 bool deferred_; | 1800 bool deferred_; |
| 1801 }; | 1801 }; |
| 1802 | 1802 |
| 1803 SINGLE_AND_MULTI_THREAD_TEST_F( | 1803 SINGLE_AND_MULTI_THREAD_TEST_F( |
| 1804 LayerTreeHostContextTestLoseAfterSendingBeginMainFrame); | 1804 LayerTreeHostContextTestLoseAfterSendingBeginMainFrame); |
| 1805 | 1805 |
| 1806 } // namespace | 1806 } // namespace |
| 1807 } // namespace cc | 1807 } // namespace cc |
| OLD | NEW |