| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef CC_TEST_TEST_CONTEXT_PROVIDER_H_ | 5 #ifndef CC_TEST_TEST_CONTEXT_PROVIDER_H_ |
| 6 #define CC_TEST_TEST_CONTEXT_PROVIDER_H_ | 6 #define CC_TEST_TEST_CONTEXT_PROVIDER_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/synchronization/lock.h" | 10 #include "base/synchronization/lock.h" |
| 11 #include "base/threading/thread_checker.h" | 11 #include "base/threading/thread_checker.h" |
| 12 #include "cc/output/context_provider.h" | 12 #include "cc/output/context_provider.h" |
| 13 #include "cc/test/test_context_support.h" | 13 #include "cc/test/test_context_support.h" |
| 14 | 14 |
| 15 namespace WebKit { class WebGraphicsContext3D; } | 15 namespace blink { class WebGraphicsContext3D; } |
| 16 | 16 |
| 17 namespace cc { | 17 namespace cc { |
| 18 class TestWebGraphicsContext3D; | 18 class TestWebGraphicsContext3D; |
| 19 | 19 |
| 20 class TestContextProvider : public cc::ContextProvider { | 20 class TestContextProvider : public cc::ContextProvider { |
| 21 public: | 21 public: |
| 22 typedef base::Callback<scoped_ptr<TestWebGraphicsContext3D>(void)> | 22 typedef base::Callback<scoped_ptr<TestWebGraphicsContext3D>(void)> |
| 23 CreateCallback; | 23 CreateCallback; |
| 24 | 24 |
| 25 static scoped_refptr<TestContextProvider> Create(); | 25 static scoped_refptr<TestContextProvider> Create(); |
| 26 static scoped_refptr<TestContextProvider> Create( | 26 static scoped_refptr<TestContextProvider> Create( |
| 27 scoped_ptr<TestWebGraphicsContext3D> context); | 27 scoped_ptr<TestWebGraphicsContext3D> context); |
| 28 | 28 |
| 29 virtual bool BindToCurrentThread() OVERRIDE; | 29 virtual bool BindToCurrentThread() OVERRIDE; |
| 30 virtual Capabilities ContextCapabilities() OVERRIDE; | 30 virtual Capabilities ContextCapabilities() OVERRIDE; |
| 31 virtual WebKit::WebGraphicsContext3D* Context3d() OVERRIDE; | 31 virtual blink::WebGraphicsContext3D* Context3d() OVERRIDE; |
| 32 virtual gpu::ContextSupport* ContextSupport() OVERRIDE; | 32 virtual gpu::ContextSupport* ContextSupport() OVERRIDE; |
| 33 virtual class GrContext* GrContext() OVERRIDE; | 33 virtual class GrContext* GrContext() OVERRIDE; |
| 34 virtual bool IsContextLost() OVERRIDE; | 34 virtual bool IsContextLost() OVERRIDE; |
| 35 virtual void VerifyContexts() OVERRIDE; | 35 virtual void VerifyContexts() OVERRIDE; |
| 36 virtual bool DestroyedOnMainThread() OVERRIDE; | 36 virtual bool DestroyedOnMainThread() OVERRIDE; |
| 37 virtual void SetLostContextCallback(const LostContextCallback& cb) OVERRIDE; | 37 virtual void SetLostContextCallback(const LostContextCallback& cb) OVERRIDE; |
| 38 virtual void SetSwapBuffersCompleteCallback( | 38 virtual void SetSwapBuffersCompleteCallback( |
| 39 const SwapBuffersCompleteCallback& cb) OVERRIDE; | 39 const SwapBuffersCompleteCallback& cb) OVERRIDE; |
| 40 virtual void SetMemoryPolicyChangedCallback( | 40 virtual void SetMemoryPolicyChangedCallback( |
| 41 const MemoryPolicyChangedCallback& cb) OVERRIDE; | 41 const MemoryPolicyChangedCallback& cb) OVERRIDE; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 | 79 |
| 80 class SwapBuffersCompleteCallbackProxy; | 80 class SwapBuffersCompleteCallbackProxy; |
| 81 scoped_ptr<SwapBuffersCompleteCallbackProxy> | 81 scoped_ptr<SwapBuffersCompleteCallbackProxy> |
| 82 swap_buffers_complete_callback_proxy_; | 82 swap_buffers_complete_callback_proxy_; |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 } // namespace cc | 85 } // namespace cc |
| 86 | 86 |
| 87 #endif // CC_TEST_TEST_CONTEXT_PROVIDER_H_ | 87 #endif // CC_TEST_TEST_CONTEXT_PROVIDER_H_ |
| 88 | 88 |
| OLD | NEW |