Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1471)

Unified Diff: cc/test/test_in_process_context_provider.h

Issue 1531403002: Revert "Delete CC." (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/test/test_image_factory.cc ('k') | cc/test/test_in_process_context_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/test_in_process_context_provider.h
diff --git a/cc/test/test_in_process_context_provider.h b/cc/test/test_in_process_context_provider.h
new file mode 100644
index 0000000000000000000000000000000000000000..9fa77b7f689d572ae2209f081ca16ba4952d933f
--- /dev/null
+++ b/cc/test/test_in_process_context_provider.h
@@ -0,0 +1,62 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CC_TEST_TEST_IN_PROCESS_CONTEXT_PROVIDER_H_
+#define CC_TEST_TEST_IN_PROCESS_CONTEXT_PROVIDER_H_
+
+#include "base/synchronization/lock.h"
+#include "cc/output/context_provider.h"
+#include "cc/test/test_gpu_memory_buffer_manager.h"
+#include "cc/test/test_image_factory.h"
+#include "skia/ext/refptr.h"
+
+class GrContext;
+
+namespace gpu {
+class GLInProcessContext;
+}
+
+namespace cc {
+
+scoped_ptr<gpu::GLInProcessContext> CreateTestInProcessContext();
+scoped_ptr<gpu::GLInProcessContext> CreateTestInProcessContext(
+ TestGpuMemoryBufferManager* gpu_memory_buffer_manager,
+ TestImageFactory* image_factory);
+
+class TestInProcessContextProvider : public ContextProvider {
+ public:
+ TestInProcessContextProvider();
+
+ bool BindToCurrentThread() override;
+ gpu::gles2::GLES2Interface* ContextGL() override;
+ gpu::ContextSupport* ContextSupport() override;
+ class GrContext* GrContext() override;
+ void SetupLock() override;
+ base::Lock* GetLock() override;
+ Capabilities ContextCapabilities() override;
+ bool IsContextLost() override;
+ void VerifyContexts() override;
+ void DeleteCachedResources() override;
+ bool DestroyedOnMainThread() override;
+ void SetLostContextCallback(
+ const LostContextCallback& lost_context_callback) override;
+ void SetMemoryPolicyChangedCallback(
+ const MemoryPolicyChangedCallback& memory_policy_changed_callback)
+ override;
+
+ protected:
+ friend class base::RefCountedThreadSafe<TestInProcessContextProvider>;
+ ~TestInProcessContextProvider() override;
+
+ private:
+ TestGpuMemoryBufferManager gpu_memory_buffer_manager_;
+ TestImageFactory image_factory_;
+ scoped_ptr<gpu::GLInProcessContext> context_;
+ skia::RefPtr<class GrContext> gr_context_;
+ base::Lock context_lock_;
+};
+
+} // namespace cc
+
+#endif // CC_TEST_TEST_IN_PROCESS_CONTEXT_PROVIDER_H_
« no previous file with comments | « cc/test/test_image_factory.cc ('k') | cc/test/test_in_process_context_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698