1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "cc/test/fake_layer_tree_host_impl.h"
9 FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(Proxy
* proxy
)
10 : LayerTreeHostImpl(LayerTreeSettings(), &client_
, proxy
)
12 // Explicitly clear all debug settings.
13 setDebugState(LayerTreeDebugState());
16 FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(
17 const LayerTreeSettings
& settings
,
19 : LayerTreeHostImpl(settings
, &client_
, proxy
)
21 // Explicitly clear all debug settings.
22 setDebugState(LayerTreeDebugState());
25 FakeLayerTreeHostImpl::~FakeLayerTreeHostImpl()