// Copyright 2016 The Chromium Authors. All rights reserved. // 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 #include #include #include "base/memory/ref_counted.h" #include "cc/cc_export.h" namespace cc { class Layer; class LayerImpl; class RenderSurfaceImpl; using LayerList = std::vector>; using OwnedLayerImplList = std::vector>; using LayerImplList = std::vector; using RenderSurfaceList = std::vector; using OwnedLayerImplMap = std::unordered_map>; using LayerImplMap = std::unordered_map; } // namespace cc #endif // CC_LAYERS_LAYER_COLLECTIONS_H_