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

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

Issue 896423003: cc: Fix multiple outstanding output surface requests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2272
Patch Set: Created 5 years, 10 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 <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 181
182 // CompositorDependencies implementation. 182 // CompositorDependencies implementation.
183 bool IsImplSidePaintingEnabled() override; 183 bool IsImplSidePaintingEnabled() override;
184 bool IsGpuRasterizationForced() override; 184 bool IsGpuRasterizationForced() override;
185 bool IsGpuRasterizationEnabled() override; 185 bool IsGpuRasterizationEnabled() override;
186 bool IsLcdTextEnabled() override; 186 bool IsLcdTextEnabled() override;
187 bool IsDistanceFieldTextEnabled() override; 187 bool IsDistanceFieldTextEnabled() override;
188 bool IsZeroCopyEnabled() override; 188 bool IsZeroCopyEnabled() override;
189 bool IsOneCopyEnabled() override; 189 bool IsOneCopyEnabled() override;
190 bool IsElasticOverscrollEnabled() override; 190 bool IsElasticOverscrollEnabled() override;
191 bool UseSingleThreadScheduler() override;
191 uint32 GetImageTextureTarget() override; 192 uint32 GetImageTextureTarget() override;
192 scoped_refptr<base::SingleThreadTaskRunner> 193 scoped_refptr<base::SingleThreadTaskRunner>
193 GetCompositorMainThreadTaskRunner() override; 194 GetCompositorMainThreadTaskRunner() override;
194 scoped_refptr<base::SingleThreadTaskRunner> 195 scoped_refptr<base::SingleThreadTaskRunner>
195 GetCompositorImplThreadTaskRunner() override; 196 GetCompositorImplThreadTaskRunner() override;
196 gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() override; 197 gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() override;
197 RendererScheduler* GetRendererScheduler() override; 198 RendererScheduler* GetRendererScheduler() override;
198 cc::ContextProvider* GetSharedMainThreadContextProvider() override; 199 cc::ContextProvider* GetSharedMainThreadContextProvider() override;
199 scoped_ptr<cc::BeginFrameSource> CreateExternalBeginFrameSource( 200 scoped_ptr<cc::BeginFrameSource> CreateExternalBeginFrameSource(
200 int routing_id) override; 201 int routing_id) override;
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 unsigned use_image_texture_target_; 596 unsigned use_image_texture_target_;
596 597
597 std::map<int, mojo::MessagePipeHandle> pending_render_frame_connects_; 598 std::map<int, mojo::MessagePipeHandle> pending_render_frame_connects_;
598 599
599 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); 600 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
600 }; 601 };
601 602
602 } // namespace content 603 } // namespace content
603 604
604 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 605 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/gpu/render_widget_compositor_unittest.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698