Create an initial chrome://supervised-user-internals page
[chromium-blink-merge.git] / cc / playback / display_item_list_settings.h
blob277a2ea8da974574cf80b6c776bec7e2be8917a1
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;
22 // Settings that control sidecar data.
23 size_t max_sidecar_size;
24 void (*sidecar_destroyer)(void* sidecar);
27 } // namespace cc
29 #endif // CC_PLAYBACK_DISPLAY_ITEM_LIST_SETTINGS_H_