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

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

Issue 871743002: cc: Fix multiple outstanding output surface requests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 182
183 // CompositorDependencies implementation. 183 // CompositorDependencies implementation.
184 bool IsImplSidePaintingEnabled() override; 184 bool IsImplSidePaintingEnabled() override;
185 bool IsGpuRasterizationForced() override; 185 bool IsGpuRasterizationForced() override;
186 bool IsGpuRasterizationEnabled() override; 186 bool IsGpuRasterizationEnabled() override;
187 bool IsLcdTextEnabled() override; 187 bool IsLcdTextEnabled() override;
188 bool IsDistanceFieldTextEnabled() override; 188 bool IsDistanceFieldTextEnabled() override;
189 bool IsZeroCopyEnabled() override; 189 bool IsZeroCopyEnabled() override;
190 bool IsOneCopyEnabled() override; 190 bool IsOneCopyEnabled() override;
191 bool IsElasticOverscrollEnabled() override; 191 bool IsElasticOverscrollEnabled() override;
192 bool UseSingleThreadScheduler() override;
192 uint32 GetImageTextureTarget() override; 193 uint32 GetImageTextureTarget() override;
193 scoped_refptr<base::SingleThreadTaskRunner> 194 scoped_refptr<base::SingleThreadTaskRunner>
194 GetCompositorMainThreadTaskRunner() override; 195 GetCompositorMainThreadTaskRunner() override;
195 scoped_refptr<base::SingleThreadTaskRunner> 196 scoped_refptr<base::SingleThreadTaskRunner>
196 GetCompositorImplThreadTaskRunner() override; 197 GetCompositorImplThreadTaskRunner() override;
197 gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() override; 198 gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() override;
198 RendererScheduler* GetRendererScheduler() override; 199 RendererScheduler* GetRendererScheduler() override;
199 cc::ContextProvider* GetSharedMainThreadContextProvider() override; 200 cc::ContextProvider* GetSharedMainThreadContextProvider() override;
200 scoped_ptr<cc::BeginFrameSource> CreateExternalBeginFrameSource( 201 scoped_ptr<cc::BeginFrameSource> CreateExternalBeginFrameSource(
201 int routing_id) override; 202 int routing_id) override;
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 unsigned use_image_texture_target_; 599 unsigned use_image_texture_target_;
599 600
600 std::map<int, mojo::MessagePipeHandle> pending_render_frame_connects_; 601 std::map<int, mojo::MessagePipeHandle> pending_render_frame_connects_;
601 602
602 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); 603 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
603 }; 604 };
604 605
605 } // namespace content 606 } // namespace content
606 607
607 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 608 #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