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

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

Issue 1317743002: cc: Implement shared worker contexts. (v1) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: surfaces_context_provider fix 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 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 #ifndef UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_FACTORY_H_ 5 #ifndef UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_FACTORY_H_
6 #define UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_FACTORY_H_ 6 #define UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_FACTORY_H_
7 7
8 #include "cc/test/test_gpu_memory_buffer_manager.h" 8 #include "cc/test/test_gpu_memory_buffer_manager.h"
9 #include "cc/test/test_image_factory.h" 9 #include "cc/test/test_image_factory.h"
10 #include "cc/test/test_shared_bitmap_manager.h" 10 #include "cc/test/test_shared_bitmap_manager.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 gfx::BufferUsage usage) override; 50 gfx::BufferUsage usage) override;
51 cc::SharedBitmapManager* GetSharedBitmapManager() override; 51 cc::SharedBitmapManager* GetSharedBitmapManager() override;
52 gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() override; 52 gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() override;
53 cc::TaskGraphRunner* GetTaskGraphRunner() override; 53 cc::TaskGraphRunner* GetTaskGraphRunner() override;
54 scoped_ptr<cc::SurfaceIdAllocator> CreateSurfaceIdAllocator() override; 54 scoped_ptr<cc::SurfaceIdAllocator> CreateSurfaceIdAllocator() override;
55 void ResizeDisplay(ui::Compositor* compositor, 55 void ResizeDisplay(ui::Compositor* compositor,
56 const gfx::Size& size) override; 56 const gfx::Size& size) override;
57 57
58 private: 58 private:
59 scoped_refptr<cc::ContextProvider> shared_main_thread_contexts_; 59 scoped_refptr<cc::ContextProvider> shared_main_thread_contexts_;
60 scoped_refptr<cc::ContextProvider> shared_worker_context_provider_;
60 cc::TestSharedBitmapManager shared_bitmap_manager_; 61 cc::TestSharedBitmapManager shared_bitmap_manager_;
61 cc::TestGpuMemoryBufferManager gpu_memory_buffer_manager_; 62 cc::TestGpuMemoryBufferManager gpu_memory_buffer_manager_;
62 cc::TestImageFactory image_factory_; 63 cc::TestImageFactory image_factory_;
63 cc::TestTaskGraphRunner task_graph_runner_; 64 cc::TestTaskGraphRunner task_graph_runner_;
64 uint32_t next_surface_id_namespace_; 65 uint32_t next_surface_id_namespace_;
65 bool use_test_surface_; 66 bool use_test_surface_;
66 bool context_factory_for_test_; 67 bool context_factory_for_test_;
67 cc::SurfaceManager* surface_manager_; 68 cc::SurfaceManager* surface_manager_;
68 69
69 base::hash_map<Compositor*, cc::OnscreenDisplayClient*> per_compositor_data_; 70 base::hash_map<Compositor*, cc::OnscreenDisplayClient*> per_compositor_data_;
70 71
71 DISALLOW_COPY_AND_ASSIGN(InProcessContextFactory); 72 DISALLOW_COPY_AND_ASSIGN(InProcessContextFactory);
72 }; 73 };
73 74
74 } // namespace ui 75 } // namespace ui
75 76
76 #endif // UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_FACTORY_H_ 77 #endif // UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698