chromium/cc/layers/layer_collections.h

// Copyright 2016 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_LAYERS_LAYER_COLLECTIONS_H_
#define CC_LAYERS_LAYER_COLLECTIONS_H_

#include <memory>
#include <unordered_map>
#include <vector>

#include "base/memory/raw_ptr_exclusion.h"
#include "base/memory/ref_counted.h"
#include "cc/cc_export.h"

namespace cc {
class Layer;
class LayerImpl;
class RenderSurfaceImpl;

LayerList;
OwnedLayerImplList;
// RAW_PTR_EXCLUSION: Renderer performance: visible in sampling profiler stacks.
LayerImplList;
RenderSurfaceList;
OwnedLayerImplMap;
LayerImplMap;

}  // namespace cc

#endif  // CC_LAYERS_LAYER_COLLECTIONS_H_