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_
10 #include "cc/base/cc_export.h"
14 class CC_EXPORT DisplayItemListSettings
{
16 DisplayItemListSettings();
17 ~DisplayItemListSettings();
19 // If set, a picture will be cached inside the DisplayItemList.
20 bool use_cached_picture
;
22 // Settings that control sidecar data.
23 size_t max_sidecar_size
;
24 void (*sidecar_destroyer
)(void* sidecar
);
29 #endif // CC_PLAYBACK_DISPLAY_ITEM_LIST_SETTINGS_H_