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

Side by Side Diff: content/renderer/render_thread_impl.h

Issue 2629243002: content: Remove blimp compositing dependencies. (Closed)
Patch Set: fix gn file Created 3 years, 11 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) 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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 class WebMediaStreamCenterClient; 63 class WebMediaStreamCenterClient;
64 } 64 }
65 65
66 namespace base { 66 namespace base {
67 class SingleThreadTaskRunner; 67 class SingleThreadTaskRunner;
68 class Thread; 68 class Thread;
69 } 69 }
70 70
71 namespace cc { 71 namespace cc {
72 class BeginFrameSource; 72 class BeginFrameSource;
73 class ImageSerializationProcessor;
74 class CompositorFrameSink; 73 class CompositorFrameSink;
75 class TaskGraphRunner; 74 class TaskGraphRunner;
76 } 75 }
77 76
78 namespace discardable_memory { 77 namespace discardable_memory {
79 class ClientDiscardableSharedMemoryManager; 78 class ClientDiscardableSharedMemoryManager;
80 } 79 }
81 80
82 namespace gpu { 81 namespace gpu {
83 class GpuChannelHost; 82 class GpuChannelHost;
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 bool IsZeroCopyEnabled() override; 224 bool IsZeroCopyEnabled() override;
226 bool IsPartialRasterEnabled() override; 225 bool IsPartialRasterEnabled() override;
227 bool IsGpuMemoryBufferCompositorResourcesEnabled() override; 226 bool IsGpuMemoryBufferCompositorResourcesEnabled() override;
228 bool IsElasticOverscrollEnabled() override; 227 bool IsElasticOverscrollEnabled() override;
229 const cc::BufferToTextureTargetMap& GetBufferToTextureTargetMap() override; 228 const cc::BufferToTextureTargetMap& GetBufferToTextureTargetMap() override;
230 scoped_refptr<base::SingleThreadTaskRunner> 229 scoped_refptr<base::SingleThreadTaskRunner>
231 GetCompositorMainThreadTaskRunner() override; 230 GetCompositorMainThreadTaskRunner() override;
232 scoped_refptr<base::SingleThreadTaskRunner> 231 scoped_refptr<base::SingleThreadTaskRunner>
233 GetCompositorImplThreadTaskRunner() override; 232 GetCompositorImplThreadTaskRunner() override;
234 blink::scheduler::RendererScheduler* GetRendererScheduler() override; 233 blink::scheduler::RendererScheduler* GetRendererScheduler() override;
235 cc::ImageSerializationProcessor* GetImageSerializationProcessor() override;
236 cc::TaskGraphRunner* GetTaskGraphRunner() override; 234 cc::TaskGraphRunner* GetTaskGraphRunner() override;
237 bool AreImageDecodeTasksEnabled() override; 235 bool AreImageDecodeTasksEnabled() override;
238 bool IsThreadedAnimationEnabled() override; 236 bool IsThreadedAnimationEnabled() override;
239 237
240 // blink::scheduler::RendererScheduler::RAILModeObserver implementation. 238 // blink::scheduler::RendererScheduler::RAILModeObserver implementation.
241 void OnRAILModeChanged(v8::RAILMode rail_mode) override; 239 void OnRAILModeChanged(v8::RAILMode rail_mode) override;
242 240
243 // Synchronously establish a channel to the GPU plugin if not previously 241 // Synchronously establish a channel to the GPU plugin if not previously
244 // established or if it has been lost (for example if the GPU plugin crashed). 242 // established or if it has been lost (for example if the GPU plugin crashed).
245 // If there is a pending asynchronous request, it will be completed by the 243 // If there is a pending asynchronous request, it will be completed by the
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); 771 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
774 }; 772 };
775 773
776 #if defined(COMPILER_MSVC) 774 #if defined(COMPILER_MSVC)
777 #pragma warning(pop) 775 #pragma warning(pop)
778 #endif 776 #endif
779 777
780 } // namespace content 778 } // namespace content
781 779
782 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 780 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698