| Index: cc/trees/layer_tree_host.h
|
| diff --git a/cc/trees/layer_tree_host.h b/cc/trees/layer_tree_host.h
|
| index acc32bba84d9ff725b16311239ced17e557e195a..53ec30ec35b5387becf8f2041eb32274b4f70463 100644
|
| --- a/cc/trees/layer_tree_host.h
|
| +++ b/cc/trees/layer_tree_host.h
|
| @@ -295,11 +295,11 @@
|
| LayerTreeHost(LayerTreeHostClient* client,
|
| SharedBitmapManager* manager,
|
| const LayerTreeSettings& settings);
|
| - void InitializeThreaded(
|
| + bool InitializeThreaded(
|
| scoped_refptr<base::SingleThreadTaskRunner> impl_task_runner);
|
| - void InitializeSingleThreaded(
|
| + bool InitializeSingleThreaded(
|
| LayerTreeHostSingleThreadClient* single_thread_client);
|
| - void InitializeForTesting(scoped_ptr<Proxy> proxy_for_testing);
|
| + bool InitializeForTesting(scoped_ptr<Proxy> proxy_for_testing);
|
| void SetOutputSurfaceLostForTesting(bool is_lost) {
|
| output_surface_lost_ = is_lost;
|
| }
|
| @@ -307,7 +307,7 @@
|
| MicroBenchmarkController micro_benchmark_controller_;
|
|
|
| private:
|
| - void InitializeProxy(scoped_ptr<Proxy> proxy);
|
| + bool InitializeProxy(scoped_ptr<Proxy> proxy);
|
|
|
| void PaintLayerContents(
|
| const RenderSurfaceLayerList& render_surface_layer_list,
|
|
|