chromium/cc/paint/paint_recorder.cc

// Copyright 2017 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/paint/paint_recorder.h"

#include <utility>

namespace cc {

PaintCanvas* PaintRecorder::beginRecording() {}

PaintRecord PaintRecorder::finishRecordingAsPicture() {}

InspectablePaintRecorder::InspectablePaintRecorder() = default;
InspectablePaintRecorder::~InspectablePaintRecorder() = default;

PaintCanvas* InspectablePaintRecorder::beginRecording(const gfx::Size& size) {}

PaintRecord InspectablePaintRecorder::finishRecordingAsPicture() {}

}  // namespace cc