// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef PDF_PREVIEW_MODE_CLIENT_H_ #define PDF_PREVIEW_MODE_CLIENT_H_ #include <stdint.h> #include <string> #include <vector> #include "base/functional/callback_forward.h" #include "base/memory/raw_ptr.h" #include "pdf/pdfium/pdfium_engine_client.h" namespace chrome_pdf { // The interface that's provided to the print preview rendering engine. class PreviewModeClient : public PDFiumEngineClient { … }; } // namespace chrome_pdf #endif // PDF_PREVIEW_MODE_CLIENT_H_