blob: e10079304c5d767a13f208a2691969657ec4439c [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_TEST_TEST_PAINT_WORKLET_LAYER_PAINTER_H_
#define CC_TEST_TEST_PAINT_WORKLET_LAYER_PAINTER_H_
#include "cc/paint/paint_worklet_layer_painter.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace cc {
class TestPaintWorkletLayerPainter : public PaintWorkletLayerPainter {
public:
TestPaintWorkletLayerPainter();
~TestPaintWorkletLayerPainter() override;
void DispatchWorklets(PaintWorkletJobMap, DoneCallback) override;
bool HasOngoingDispatch() const override;
DoneCallback TakeDoneCallback() { return std::move(done_callback_); }
private:
DoneCallback done_callback_;
};
} // namespace cc
#endif // CC_TEST_TEST_PAINT_WORKLET_LAYER_PAINTER_H_