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

Side by Side Diff: content/gpu/gpu_child_thread.h

Issue 1231263003: Share SyncPointManager between ipc and in-process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 5 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
« no previous file with comments | « content/common/gpu/gpu_command_buffer_stub.cc ('k') | content/gpu/gpu_child_thread.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_GPU_GPU_CHILD_THREAD_H_ 5 #ifndef CONTENT_GPU_GPU_CHILD_THREAD_H_
6 #define CONTENT_GPU_GPU_CHILD_THREAD_H_ 6 #define CONTENT_GPU_GPU_CHILD_THREAD_H_
7 7
8 #include <queue> 8 #include <queue>
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/command_line.h" 12 #include "base/command_line.h"
13 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/time/time.h" 15 #include "base/time/time.h"
16 #include "build/build_config.h" 16 #include "build/build_config.h"
17 #include "content/child/child_thread_impl.h" 17 #include "content/child/child_thread_impl.h"
18 #include "content/common/gpu/gpu_channel.h" 18 #include "content/common/gpu/gpu_channel.h"
19 #include "content/common/gpu/gpu_channel_manager.h" 19 #include "content/common/gpu/gpu_channel_manager.h"
20 #include "content/common/gpu/gpu_config.h" 20 #include "content/common/gpu/gpu_config.h"
21 #include "content/common/gpu/x_util.h" 21 #include "content/common/gpu/x_util.h"
22 #include "gpu/config/gpu_info.h" 22 #include "gpu/config/gpu_info.h"
23 #include "ui/gfx/native_widget_types.h" 23 #include "ui/gfx/native_widget_types.h"
24 24
25 namespace gpu {
26 class SyncPointManager;
27 }
28
25 namespace sandbox { 29 namespace sandbox {
26 class TargetServices; 30 class TargetServices;
27 } 31 }
28 32
29 namespace content { 33 namespace content {
30 class GpuMemoryBufferFactory; 34 class GpuMemoryBufferFactory;
31 class GpuWatchdogThread; 35 class GpuWatchdogThread;
32 36
33 // The main thread of the GPU child process. There will only ever be one of 37 // The main thread of the GPU child process. There will only ever be one of
34 // these per process. It does process initialization and shutdown. It forwards 38 // these per process. It does process initialization and shutdown. It forwards
35 // IPC messages to GpuChannelManager, which is responsible for issuing rendering 39 // IPC messages to GpuChannelManager, which is responsible for issuing rendering
36 // commands to the GPU. 40 // commands to the GPU.
37 class GpuChildThread : public ChildThreadImpl { 41 class GpuChildThread : public ChildThreadImpl {
38 public: 42 public:
39 typedef std::queue<IPC::Message*> DeferredMessages; 43 typedef std::queue<IPC::Message*> DeferredMessages;
40 44
41 GpuChildThread(GpuWatchdogThread* gpu_watchdog_thread, 45 GpuChildThread(GpuWatchdogThread* gpu_watchdog_thread,
42 bool dead_on_arrival, 46 bool dead_on_arrival,
43 const gpu::GPUInfo& gpu_info, 47 const gpu::GPUInfo& gpu_info,
44 const DeferredMessages& deferred_messages, 48 const DeferredMessages& deferred_messages,
45 GpuMemoryBufferFactory* gpu_memory_buffer_factory); 49 GpuMemoryBufferFactory* gpu_memory_buffer_factory);
46 50
47 GpuChildThread(const InProcessChildThreadParams& params, 51 GpuChildThread(const InProcessChildThreadParams& params,
48 GpuMemoryBufferFactory* gpu_memory_buffer_factory); 52 GpuMemoryBufferFactory* gpu_memory_buffer_factory,
53 gpu::SyncPointManager* sync_point_manager_override);
49 54
50 ~GpuChildThread() override; 55 ~GpuChildThread() override;
51 56
52 static gfx::GpuMemoryBufferType GetGpuMemoryBufferFactoryType(); 57 static gfx::GpuMemoryBufferType GetGpuMemoryBufferFactoryType();
53 58
54 void Shutdown() override; 59 void Shutdown() override;
55 60
56 void Init(const base::Time& process_start_time); 61 void Init(const base::Time& process_start_time);
57 void StopWatchdog(); 62 void StopWatchdog();
58 63
(...skipping 22 matching lines...) Expand all
81 // OnInitialize message, in which case we just declare ourselves DOA. 86 // OnInitialize message, in which case we just declare ourselves DOA.
82 bool dead_on_arrival_; 87 bool dead_on_arrival_;
83 base::Time process_start_time_; 88 base::Time process_start_time_;
84 scoped_refptr<GpuWatchdogThread> watchdog_thread_; 89 scoped_refptr<GpuWatchdogThread> watchdog_thread_;
85 90
86 #if defined(OS_WIN) 91 #if defined(OS_WIN)
87 // Windows specific client sandbox interface. 92 // Windows specific client sandbox interface.
88 sandbox::TargetServices* target_services_; 93 sandbox::TargetServices* target_services_;
89 #endif 94 #endif
90 95
96 // Can be null when overridden.
97 scoped_ptr<gpu::SyncPointManager> sync_point_manager_;
piman 2015/07/20 22:26:11 This works, or you can also have it owned at a hig
boliu 2015/07/20 23:58:04 Ahh yes, that's much better. Gets rid of this _ove
98 gpu::SyncPointManager* sync_point_manager_ptr_;
99
91 scoped_ptr<GpuChannelManager> gpu_channel_manager_; 100 scoped_ptr<GpuChannelManager> gpu_channel_manager_;
92 101
93 // Information about the GPU, such as device and vendor ID. 102 // Information about the GPU, such as device and vendor ID.
94 gpu::GPUInfo gpu_info_; 103 gpu::GPUInfo gpu_info_;
95 104
96 // Error messages collected in gpu_main() before the thread is created. 105 // Error messages collected in gpu_main() before the thread is created.
97 DeferredMessages deferred_messages_; 106 DeferredMessages deferred_messages_;
98 107
99 // Whether the GPU thread is running in the browser process. 108 // Whether the GPU thread is running in the browser process.
100 bool in_browser_process_; 109 bool in_browser_process_;
101 110
102 // The GpuMemoryBufferFactory instance used to allocate GpuMemoryBuffers. 111 // The GpuMemoryBufferFactory instance used to allocate GpuMemoryBuffers.
103 GpuMemoryBufferFactory* const gpu_memory_buffer_factory_; 112 GpuMemoryBufferFactory* const gpu_memory_buffer_factory_;
104 113
105 DISALLOW_COPY_AND_ASSIGN(GpuChildThread); 114 DISALLOW_COPY_AND_ASSIGN(GpuChildThread);
106 }; 115 };
107 116
108 } // namespace content 117 } // namespace content
109 118
110 #endif // CONTENT_GPU_GPU_CHILD_THREAD_H_ 119 #endif // CONTENT_GPU_GPU_CHILD_THREAD_H_
OLDNEW
« no previous file with comments | « content/common/gpu/gpu_command_buffer_stub.cc ('k') | content/gpu/gpu_child_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698