Chromium Code Reviews| Index: content/browser/gpu/gpu_process_host.h |
| diff --git a/content/browser/gpu/gpu_process_host.h b/content/browser/gpu/gpu_process_host.h |
| index 9f2b5206ec3aa8010d1f3e063596c2649ed380de..2004e9ff54af4486a7b15d057bbbf41e000b8a6a 100644 |
| --- a/content/browser/gpu/gpu_process_host.h |
| +++ b/content/browser/gpu/gpu_process_host.h |
| @@ -80,6 +80,9 @@ class GpuProcessHost : public BrowserChildProcessHost, |
| const GPUCreateCommandBufferConfig& init_params, |
| CreateCommandBufferCallback* callback); |
| + // Whether this GPU process is set up to use software rendering. |
| + bool SoftwareRendering(); |
|
Zhenyao Mo
2011/11/10 18:34:34
Here also: software_rendering().
|
| + |
| private: |
| GpuProcessHost(int host_id); |
| virtual ~GpuProcessHost(); |
| @@ -149,6 +152,8 @@ class GpuProcessHost : public BrowserChildProcessHost, |
| // of a separate GPU process. |
| bool in_process_; |
| + bool software_rendering_; |
| + |
| scoped_ptr<GpuMainThread> in_process_gpu_thread_; |
| // Master switch for enabling/disabling GPU acceleration for the current |