blob: c673be86432c360d295af26bf21c8fb17196b8ec [file] [log] [blame]
// Copyright 2023 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "testing/helpers/page_renderer.h"
#include "public/fpdfview.h"
PageRenderer::PageRenderer(FPDF_PAGE page, int width, int height, int flags)
: page_(page), width_(width), height_(height), flags_(flags) {}
PageRenderer::~PageRenderer() = default;
bool PageRenderer::Continue() {
return false;
}