// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CC_SLIM_SURFACE_LAYER_H_ #define CC_SLIM_SURFACE_LAYER_H_ #include <optional> #include "base/component_export.h" #include "base/containers/flat_map.h" #include "cc/layers/deadline_policy.h" #include "cc/slim/layer.h" #include "components/viz/common/quads/offset_tag.h" #include "components/viz/common/surfaces/surface_id.h" #include "components/viz/common/surfaces/surface_range.h" namespace cc::slim { // A layer that embeds content from another viz client. class COMPONENT_EXPORT(CC_SLIM) SurfaceLayer : public Layer { … }; } // namespace cc::slim #endif // CC_SLIM_SURFACE_LAYER_H_