chromium/cc/layers/mirror_layer.cc

// 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.

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

}  // namespace cc