chromium/cc/test/fake_proxy.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "cc/test/fake_proxy.h"

#include <memory>

#include "cc/paint/paint_worklet_layer_painter.h"
#include "cc/trees/layer_tree_mutator.h"

namespace cc {

void FakeProxy::SetLayerTreeHost(LayerTreeHost* host) {}

bool FakeProxy::RequestedAnimatePending() {}

bool FakeProxy::IsStarted() const {}

bool FakeProxy::StartDeferringCommits(base::TimeDelta timeout,
                                      PaintHoldingReason reason) {}

bool FakeProxy::IsDeferringCommits() const {}

bool FakeProxy::CommitRequested() const {}

void FakeProxy::QueueImageDecode(int request_id, const PaintImage& image) {}

void FakeProxy::SetMutator(std::unique_ptr<LayerTreeMutator> mutator) {}

void FakeProxy::SetPaintWorkletLayerPainter(
    std::unique_ptr<PaintWorkletLayerPainter> painter) {}

bool FakeProxy::MainFrameWillHappenForTesting() {}

double FakeProxy::GetPercentDroppedFrames() const {}

}  // namespace cc