Linux: Depend on liberation-fonts package for RPMs.
[chromium-blink-merge.git] / cc / playback / display_item_list_settings.h
blob85fe8db3fa6d53c550efebd341ed28dcc8f27afa
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.
5 #ifndef CC_PLAYBACK_DISPLAY_ITEM_LIST_SETTINGS_H_
6 #define CC_PLAYBACK_DISPLAY_ITEM_LIST_SETTINGS_H_
8 #include <cstddef>
10 #include "cc/base/cc_export.h"
12 namespace cc {
14 class CC_EXPORT DisplayItemListSettings {
15 public:
16 DisplayItemListSettings();
17 ~DisplayItemListSettings();
19 // If set, a picture will be cached inside the DisplayItemList.
20 bool use_cached_picture;
23 } // namespace cc
25 #endif // CC_PLAYBACK_DISPLAY_ITEM_LIST_SETTINGS_H_