1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51

cc / layers / mirror_layer.h [blame]

// 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 {
 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(); }

  // Layer overrides.
  std::unique_ptr<LayerImpl> CreateLayerImpl(
      LayerTreeImpl* tree_impl) const override;
  void SetLayerTreeHost(LayerTreeHost* host) override;

 protected:
  explicit MirrorLayer(scoped_refptr<Layer> mirrored_layer);

  // Layer overrides.
  void PushDirtyPropertiesTo(
      LayerImpl* layer,
      uint8_t dirty_flag,
      const CommitState& commit_state,
      const ThreadUnsafeCommitState& unsafe_state) override;

 private:
  ~MirrorLayer() override;

  // A reference to a layer that is mirrored by this layer. |mirrored_layer_|
  // cannot be an ancestor of |this|.
  const scoped_refptr<Layer> mirrored_layer_;
};

}  // namespace cc

#endif  // CC_LAYERS_MIRROR_LAYER_H_