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

Side by Side Diff: cc/test/layer_tree_test.cc

Issue 1273163004: Revert of cc: Use worker context for one-copy tile initialization. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « cc/test/layer_tree_test.h ('k') | cc/test/pixel_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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 #include "cc/test/layer_tree_test.h" 5 #include "cc/test/layer_tree_test.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/location.h" 8 #include "base/location.h"
9 #include "base/single_thread_task_runner.h" 9 #include "base/single_thread_task_runner.h"
10 #include "base/thread_task_runner_handle.h" 10 #include "base/thread_task_runner_handle.h"
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 DrawResult TestHooks::PrepareToDrawOnThread( 100 DrawResult TestHooks::PrepareToDrawOnThread(
101 LayerTreeHostImpl* host_impl, 101 LayerTreeHostImpl* host_impl,
102 LayerTreeHostImpl::FrameData* frame_data, 102 LayerTreeHostImpl::FrameData* frame_data,
103 DrawResult draw_result) { 103 DrawResult draw_result) {
104 return draw_result; 104 return draw_result;
105 } 105 }
106 106
107 void TestHooks::CreateResourceAndTileTaskWorkerPool( 107 void TestHooks::CreateResourceAndTileTaskWorkerPool(
108 LayerTreeHostImpl* host_impl, 108 LayerTreeHostImpl* host_impl,
109 scoped_ptr<TileTaskWorkerPool>* tile_task_worker_pool, 109 scoped_ptr<TileTaskWorkerPool>* tile_task_worker_pool,
110 scoped_ptr<ResourcePool>* resource_pool) { 110 scoped_ptr<ResourcePool>* resource_pool,
111 scoped_ptr<ResourcePool>* staging_resource_pool) {
111 host_impl->LayerTreeHostImpl::CreateResourceAndTileTaskWorkerPool( 112 host_impl->LayerTreeHostImpl::CreateResourceAndTileTaskWorkerPool(
112 tile_task_worker_pool, resource_pool); 113 tile_task_worker_pool, resource_pool, staging_resource_pool);
113 } 114 }
114 115
115 // Adapts ThreadProxy for test. Injects test hooks for testing. 116 // Adapts ThreadProxy for test. Injects test hooks for testing.
116 class ThreadProxyForTest : public ThreadProxy { 117 class ThreadProxyForTest : public ThreadProxy {
117 public: 118 public:
118 static scoped_ptr<Proxy> Create( 119 static scoped_ptr<Proxy> Create(
119 TestHooks* test_hooks, 120 TestHooks* test_hooks,
120 LayerTreeHost* host, 121 LayerTreeHost* host,
121 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, 122 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
122 scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner, 123 scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner,
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 shared_bitmap_manager, 296 shared_bitmap_manager,
296 gpu_memory_buffer_manager, 297 gpu_memory_buffer_manager,
297 task_graph_runner, 298 task_graph_runner,
298 0), 299 0),
299 test_hooks_(test_hooks), 300 test_hooks_(test_hooks),
300 block_notify_ready_to_activate_for_testing_(false), 301 block_notify_ready_to_activate_for_testing_(false),
301 notify_ready_to_activate_was_blocked_(false) {} 302 notify_ready_to_activate_was_blocked_(false) {}
302 303
303 void CreateResourceAndTileTaskWorkerPool( 304 void CreateResourceAndTileTaskWorkerPool(
304 scoped_ptr<TileTaskWorkerPool>* tile_task_worker_pool, 305 scoped_ptr<TileTaskWorkerPool>* tile_task_worker_pool,
305 scoped_ptr<ResourcePool>* resource_pool) override { 306 scoped_ptr<ResourcePool>* resource_pool,
307 scoped_ptr<ResourcePool>* staging_resource_pool) override {
306 test_hooks_->CreateResourceAndTileTaskWorkerPool( 308 test_hooks_->CreateResourceAndTileTaskWorkerPool(
307 this, tile_task_worker_pool, resource_pool); 309 this, tile_task_worker_pool, resource_pool, staging_resource_pool);
308 } 310 }
309 311
310 void WillBeginImplFrame(const BeginFrameArgs& args) override { 312 void WillBeginImplFrame(const BeginFrameArgs& args) override {
311 LayerTreeHostImpl::WillBeginImplFrame(args); 313 LayerTreeHostImpl::WillBeginImplFrame(args);
312 test_hooks_->WillBeginImplFrameOnThread(this, args); 314 test_hooks_->WillBeginImplFrameOnThread(this, args);
313 } 315 }
314 316
315 void DidFinishImplFrame() override { 317 void DidFinishImplFrame() override {
316 LayerTreeHostImpl::DidFinishImplFrame(); 318 LayerTreeHostImpl::DidFinishImplFrame();
317 test_hooks_->DidFinishImplFrameOnThread(this); 319 test_hooks_->DidFinishImplFrameOnThread(this);
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after
980 LayerTreeHost* LayerTreeTest::layer_tree_host() { 982 LayerTreeHost* LayerTreeTest::layer_tree_host() {
981 // We check for a null proxy here as we sometimes ask for the layer tree host 983 // We check for a null proxy here as we sometimes ask for the layer tree host
982 // when the proxy does not exist, often for checking settings after a test has 984 // when the proxy does not exist, often for checking settings after a test has
983 // completed. For example, LTHPixelResourceTest::RunPixelResourceTest. See 985 // completed. For example, LTHPixelResourceTest::RunPixelResourceTest. See
984 // elsewhere in this file for other examples. 986 // elsewhere in this file for other examples.
985 DCHECK(!proxy() || proxy()->IsMainThread() || proxy()->IsMainThreadBlocked()); 987 DCHECK(!proxy() || proxy()->IsMainThread() || proxy()->IsMainThreadBlocked());
986 return layer_tree_host_.get(); 988 return layer_tree_host_.get();
987 } 989 }
988 990
989 } // namespace cc 991 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/layer_tree_test.h ('k') | cc/test/pixel_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698