| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "content/test/test_context_provider_factory.h" | 5 #include "content/test/test_context_provider_factory.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "cc/output/context_provider.h" | 8 #include "cc/output/context_provider.h" |
| 9 #include "webkit/common/gpu/context_provider_in_process.h" | 9 #include "webkit/common/gpu/context_provider_in_process.h" |
| 10 | 10 |
| 11 namespace content { | 11 namespace content { |
| 12 | 12 |
| 13 static TestContextProviderFactory* context_provider_instance = NULL; | 13 static TestContextProviderFactory* context_provider_instance = NULL; |
| 14 | 14 |
| 15 // static | 15 // static |
| 16 TestContextProviderFactory* TestContextProviderFactory::GetInstance() { | 16 TestContextProviderFactory* TestContextProviderFactory::GetInstance() { |
| 17 if (!context_provider_instance) | 17 if (!context_provider_instance) |
| 18 context_provider_instance = new TestContextProviderFactory(); | 18 context_provider_instance = new TestContextProviderFactory(); |
| 19 return context_provider_instance; | 19 return context_provider_instance; |
| 20 } | 20 } |
| 21 | 21 |
| 22 TestContextProviderFactory::TestContextProviderFactory() {} | 22 TestContextProviderFactory::TestContextProviderFactory() {} |
| 23 | 23 |
| 24 TestContextProviderFactory::~TestContextProviderFactory() {} | 24 TestContextProviderFactory::~TestContextProviderFactory() {} |
| 25 | 25 |
| 26 scoped_refptr<cc::ContextProvider> TestContextProviderFactory:: | 26 scoped_refptr<cc::ContextProvider> TestContextProviderFactory:: |
| 27 OffscreenContextProviderForMainThread() { | 27 OffscreenContextProviderForMainThread() { |
| 28 if (!main_thread_.get() || main_thread_->DestroyedOnMainThread()) { | 28 if (!main_thread_.get() || main_thread_->DestroyedOnMainThread()) { |
| 29 bool lose_context_when_out_of_memory = false; | 29 main_thread_ = webkit::gpu::ContextProviderInProcess::CreateOffscreen(); |
| 30 main_thread_ = webkit::gpu::ContextProviderInProcess::CreateOffscreen( | |
| 31 lose_context_when_out_of_memory); | |
| 32 if (main_thread_.get() && !main_thread_->BindToCurrentThread()) | 30 if (main_thread_.get() && !main_thread_->BindToCurrentThread()) |
| 33 main_thread_ = NULL; | 31 main_thread_ = NULL; |
| 34 } | 32 } |
| 35 return main_thread_; | 33 return main_thread_; |
| 36 } | 34 } |
| 37 | 35 |
| 38 } // namespace content | 36 } // namespace content |
| OLD | NEW |