#include <utility>
#include "cc/layers/mirror_layer.h"
#include "cc/layers/mirror_layer_impl.h"
namespace cc {
std::unique_ptr<LayerImpl> MirrorLayer::CreateLayerImpl(
LayerTreeImpl* tree_impl) const { … }
void MirrorLayer::PushPropertiesTo(
LayerImpl* layer,
const CommitState& commit_state,
const ThreadUnsafeCommitState& unsafe_state) { … }
void MirrorLayer::SetLayerTreeHost(LayerTreeHost* host) { … }
scoped_refptr<MirrorLayer> MirrorLayer::Create(
scoped_refptr<Layer> mirrored_layer) { … }
MirrorLayer::MirrorLayer(scoped_refptr<Layer> mirrored_layer)
: … { … }
MirrorLayer::~MirrorLayer() { … }
}