#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 {
class CC_EXPORT MirrorLayer : public Layer {
public:
static scoped_refptr<MirrorLayer> Create(scoped_refptr<Layer> mirrored_layer);
MirrorLayer(const MirrorLayer&) = delete;
MirrorLayer& operator=(const MirrorLayer&) = delete;
Layer* mirrored_layer() const { return mirrored_layer_.get(); }
std::unique_ptr<LayerImpl> CreateLayerImpl(
LayerTreeImpl* tree_impl) const override;
void SetLayerTreeHost(LayerTreeHost* host) override;
protected:
explicit MirrorLayer(scoped_refptr<Layer> mirrored_layer);
void PushDirtyPropertiesTo(
LayerImpl* layer,
uint8_t dirty_flag,
const CommitState& commit_state,
const ThreadUnsafeCommitState& unsafe_state) override;
private:
~MirrorLayer() override;
const scoped_refptr<Layer> mirrored_layer_;
};
}
#endif