OLD | NEW |
| (Empty) |
1 // Copyright 2015 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. | |
4 | |
5 #ifndef BLIMP_CLIENT_SUPPORT_COMPOSITOR_BLIMP_LAYER_TREE_SETTINGS_H_ | |
6 #define BLIMP_CLIENT_SUPPORT_COMPOSITOR_BLIMP_LAYER_TREE_SETTINGS_H_ | |
7 | |
8 namespace cc { | |
9 class LayerTreeSettings; | |
10 } | |
11 | |
12 namespace blimp { | |
13 namespace client { | |
14 | |
15 // Populates client |settings| based on defaults & command line flags. This | |
16 // might have to be tweaked into a message protocol if it turns out | |
17 // the host compositor needs to actually drive some specific settings of the | |
18 // client. | |
19 void PopulateCommonLayerTreeSettings(cc::LayerTreeSettings* settings); | |
20 | |
21 } // namespace client | |
22 } // namespace blimp | |
23 | |
24 #endif // BLIMP_CLIENT_SUPPORT_COMPOSITOR_BLIMP_LAYER_TREE_SETTINGS_H_ | |
OLD | NEW |