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

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

Issue 2537683002: cc: Add image decode queue functionality to image manager. (Closed)
Patch Set: test fix 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
« no previous file with comments | « cc/test/fake_tile_manager.cc ('k') | cc/tiles/decoded_image_tracker.h » ('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/memory/ptr_util.h" 9 #include "base/memory/ptr_util.h"
10 #include "base/run_loop.h" 10 #include "base/run_loop.h"
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 LayerTreeHostImplClient* host_impl_client, 110 LayerTreeHostImplClient* host_impl_client,
111 TaskRunnerProvider* task_runner_provider, 111 TaskRunnerProvider* task_runner_provider,
112 TaskGraphRunner* task_graph_runner, 112 TaskGraphRunner* task_graph_runner,
113 RenderingStatsInstrumentation* stats_instrumentation) 113 RenderingStatsInstrumentation* stats_instrumentation)
114 : LayerTreeHostImpl(settings, 114 : LayerTreeHostImpl(settings,
115 host_impl_client, 115 host_impl_client,
116 task_runner_provider, 116 task_runner_provider,
117 stats_instrumentation, 117 stats_instrumentation,
118 task_graph_runner, 118 task_graph_runner,
119 AnimationHost::CreateForTesting(ThreadInstance::IMPL), 119 AnimationHost::CreateForTesting(ThreadInstance::IMPL),
120 0), 120 0,
121 nullptr),
121 test_hooks_(test_hooks), 122 test_hooks_(test_hooks),
122 block_notify_ready_to_activate_for_testing_(false), 123 block_notify_ready_to_activate_for_testing_(false),
123 notify_ready_to_activate_was_blocked_(false) {} 124 notify_ready_to_activate_was_blocked_(false) {}
124 125
125 void CreateResourceAndRasterBufferProvider( 126 void CreateResourceAndRasterBufferProvider(
126 std::unique_ptr<RasterBufferProvider>* raster_buffer_provider, 127 std::unique_ptr<RasterBufferProvider>* raster_buffer_provider,
127 std::unique_ptr<ResourcePool>* resource_pool) override { 128 std::unique_ptr<ResourcePool>* resource_pool) override {
128 test_hooks_->CreateResourceAndRasterBufferProvider( 129 test_hooks_->CreateResourceAndRasterBufferProvider(
129 this, raster_buffer_provider, resource_pool); 130 this, raster_buffer_provider, resource_pool);
130 } 131 }
(...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after
919 DCHECK(!IsRemoteTest()); 920 DCHECK(!IsRemoteTest());
920 return layer_tree_host_in_process_; 921 return layer_tree_host_in_process_;
921 } 922 }
922 923
923 Proxy* LayerTreeTest::proxy() { 924 Proxy* LayerTreeTest::proxy() {
924 return layer_tree_host_in_process() ? layer_tree_host_in_process()->proxy() 925 return layer_tree_host_in_process() ? layer_tree_host_in_process()->proxy()
925 : NULL; 926 : NULL;
926 } 927 }
927 928
928 } // namespace cc 929 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/fake_tile_manager.cc ('k') | cc/tiles/decoded_image_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698