blob: 4a37b57b158552f0ea7a699a9e0c0871ebdd15f2 [file]
// 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/pdfium_test/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;
}