chromium/cc/layers/mirror_layer.h

// Copyright 2019 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_MIRROR_LAYER_H_
#define CC_LAYERS_MIRROR_LAYER_H_

#include <memory>

#include "base/memory/scoped_refptr.h"
#include "cc/cc_export.h"
#include "cc/layers/layer.h"

namespace cc {

// A layer that can mirror contents of another Layer.
class CC_EXPORT MirrorLayer : public Layer {};

}  // namespace cc

#endif  // CC_LAYERS_MIRROR_LAYER_H_