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

Side by Side Diff: ui/compositor/test/in_process_context_provider.h

Issue 1322853005: cc: Implement shared worker contexts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_PROVIDER_H_ 5 #ifndef UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_PROVIDER_H_
6 #define UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_PROVIDER_H_ 6 #define UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_PROVIDER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 20 matching lines...) Expand all
31 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager, 31 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager,
32 gpu::ImageFactory* image_factory, 32 gpu::ImageFactory* image_factory,
33 gfx::AcceleratedWidget window, 33 gfx::AcceleratedWidget window,
34 const std::string& debug_name); 34 const std::string& debug_name);
35 35
36 // Uses default attributes for creating an offscreen context. 36 // Uses default attributes for creating an offscreen context.
37 static scoped_refptr<InProcessContextProvider> CreateOffscreen( 37 static scoped_refptr<InProcessContextProvider> CreateOffscreen(
38 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager, 38 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager,
39 gpu::ImageFactory* image_factory); 39 gpu::ImageFactory* image_factory);
40 40
41 private: 41 void Destroy();
42 InProcessContextProvider(
43 const gpu::gles2::ContextCreationAttribHelper& attribs,
44 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager,
45 gpu::ImageFactory* image_factory,
46 gfx::AcceleratedWidget window,
47 const std::string& debug_name);
48 ~InProcessContextProvider() override;
49 42
50 // cc::ContextProvider: 43 // cc::ContextProvider:
51 bool BindToCurrentThread() override; 44 bool BindToCurrentThread() override;
52 void DetachFromThread() override; 45 void DetachFromThread() override;
53 Capabilities ContextCapabilities() override; 46 Capabilities ContextCapabilities() override;
54 gpu::gles2::GLES2Interface* ContextGL() override; 47 gpu::gles2::GLES2Interface* ContextGL() override;
55 gpu::ContextSupport* ContextSupport() override; 48 gpu::ContextSupport* ContextSupport() override;
56 class GrContext* GrContext() override; 49 class GrContext* GrContext() override;
57 void InvalidateGrContext(uint32_t state) override; 50 void InvalidateGrContext(uint32_t state) override;
58 void SetupLock() override; 51 void SetupLock() override;
59 base::Lock* GetLock() override; 52 base::Lock* GetLock() override;
60 void VerifyContexts() override; 53 void VerifyContexts() override;
61 void DeleteCachedResources() override; 54 void DeleteCachedResources() override;
62 bool DestroyedOnMainThread() override; 55 bool DestroyedOnMainThread() override;
63 void SetLostContextCallback( 56 void SetLostContextCallback(
64 const LostContextCallback& lost_context_callback) override; 57 const LostContextCallback& lost_context_callback) override;
65 void SetMemoryPolicyChangedCallback( 58 void SetMemoryPolicyChangedCallback(
66 const MemoryPolicyChangedCallback& memory_policy_changed_callback) 59 const MemoryPolicyChangedCallback& memory_policy_changed_callback)
67 override; 60 override;
68 61
62 private:
63 InProcessContextProvider(
64 const gpu::gles2::ContextCreationAttribHelper& attribs,
65 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager,
66 gpu::ImageFactory* image_factory,
67 gfx::AcceleratedWidget window,
68 const std::string& debug_name);
69 ~InProcessContextProvider() override;
70
69 void OnLostContext(); 71 void OnLostContext();
70 72
71 base::ThreadChecker main_thread_checker_; 73 base::ThreadChecker main_thread_checker_;
72 base::ThreadChecker context_thread_checker_; 74 base::ThreadChecker context_thread_checker_;
73 75
74 scoped_ptr<gpu::GLInProcessContext> context_; 76 scoped_ptr<gpu::GLInProcessContext> context_;
75 skia::RefPtr<class GrContext> gr_context_; 77 skia::RefPtr<class GrContext> gr_context_;
76 78
77 gpu::gles2::ContextCreationAttribHelper attribs_; 79 gpu::gles2::ContextCreationAttribHelper attribs_;
78 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager_; 80 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager_;
79 gpu::ImageFactory* image_factory_; 81 gpu::ImageFactory* image_factory_;
80 gfx::AcceleratedWidget window_; 82 gfx::AcceleratedWidget window_;
81 std::string debug_name_; 83 std::string debug_name_;
82 cc::ContextProvider::Capabilities capabilities_; 84 cc::ContextProvider::Capabilities capabilities_;
83 85
84 LostContextCallback lost_context_callback_; 86 LostContextCallback lost_context_callback_;
85 87
86 base::Lock destroyed_lock_; 88 base::Lock destroyed_lock_;
87 bool destroyed_; 89 bool destroyed_;
88 90
89 base::Lock context_lock_; 91 base::Lock context_lock_;
90 92
91 DISALLOW_COPY_AND_ASSIGN(InProcessContextProvider); 93 DISALLOW_COPY_AND_ASSIGN(InProcessContextProvider);
92 }; 94 };
93 95
94 } // namespace ui 96 } // namespace ui
95 97
96 #endif // UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_PROVIDER_H_ 98 #endif // UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698