Revert "Merged all Chromoting Host code into remoting_core.dll (Windows)."
[chromium-blink-merge.git] / cc / test / fake_layer_tree_host_impl.cc
blob64d0150da9f96b448745aef098ed6b2a6559266d
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"
7 namespace cc {
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,
18 Proxy* proxy)
19 : LayerTreeHostImpl(settings, &client_, proxy)
21 // Explicitly clear all debug settings.
22 setDebugState(LayerTreeDebugState());
25 FakeLayerTreeHostImpl::~FakeLayerTreeHostImpl()
29 } // namespace cc