| OLD | NEW |
| 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_RENDERER_RENDER_THREAD_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 base::WaitableEvent* GetShutdownEvent() override; | 186 base::WaitableEvent* GetShutdownEvent() override; |
| 187 ServiceRegistry* GetServiceRegistry() override; | 187 ServiceRegistry* GetServiceRegistry() override; |
| 188 | 188 |
| 189 // CompositorDependencies implementation. | 189 // CompositorDependencies implementation. |
| 190 bool IsGpuRasterizationForced() override; | 190 bool IsGpuRasterizationForced() override; |
| 191 bool IsGpuRasterizationEnabled() override; | 191 bool IsGpuRasterizationEnabled() override; |
| 192 int GetGpuRasterizationMSAASampleCount() override; | 192 int GetGpuRasterizationMSAASampleCount() override; |
| 193 bool IsLcdTextEnabled() override; | 193 bool IsLcdTextEnabled() override; |
| 194 bool IsDistanceFieldTextEnabled() override; | 194 bool IsDistanceFieldTextEnabled() override; |
| 195 bool IsZeroCopyEnabled() override; | 195 bool IsZeroCopyEnabled() override; |
| 196 bool IsOneCopyEnabled() override; | |
| 197 bool IsPersistentGpuMemoryBufferEnabled() override; | 196 bool IsPersistentGpuMemoryBufferEnabled() override; |
| 198 bool IsElasticOverscrollEnabled() override; | 197 bool IsElasticOverscrollEnabled() override; |
| 199 std::vector<unsigned> GetImageTextureTargets() override; | 198 std::vector<unsigned> GetImageTextureTargets() override; |
| 200 scoped_refptr<base::SingleThreadTaskRunner> | 199 scoped_refptr<base::SingleThreadTaskRunner> |
| 201 GetCompositorMainThreadTaskRunner() override; | 200 GetCompositorMainThreadTaskRunner() override; |
| 202 scoped_refptr<base::SingleThreadTaskRunner> | 201 scoped_refptr<base::SingleThreadTaskRunner> |
| 203 GetCompositorImplThreadTaskRunner() override; | 202 GetCompositorImplThreadTaskRunner() override; |
| 204 gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() override; | 203 gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() override; |
| 205 scheduler::RendererScheduler* GetRendererScheduler() override; | 204 scheduler::RendererScheduler* GetRendererScheduler() override; |
| 206 cc::ContextProvider* GetSharedMainThreadContextProvider() override; | 205 cc::ContextProvider* GetSharedMainThreadContextProvider() override; |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 655 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 657 }; | 656 }; |
| 658 | 657 |
| 659 #if defined(COMPILER_MSVC) | 658 #if defined(COMPILER_MSVC) |
| 660 #pragma warning(pop) | 659 #pragma warning(pop) |
| 661 #endif | 660 #endif |
| 662 | 661 |
| 663 } // namespace content | 662 } // namespace content |
| 664 | 663 |
| 665 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 664 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |