// Copyright 2024 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_PDF_PROGRESSIVE_SEARCHIFIER_H_ #define PDF_PDF_PROGRESSIVE_SEARCHIFIER_H_ #include <cstdint> #include <vector> #include "services/screen_ai/public/mojom/screen_ai_service.mojom-forward.h" #include "third_party/skia/include/core/SkBitmap.h" namespace chrome_pdf { // Creates a PDF and provides operations to add and delete pages, and save the // searchified PDF. The operation requests are handled one by one. class PdfProgressiveSearchifier { … }; } // namespace chrome_pdf #endif // PDF_PDF_PROGRESSIVE_SEARCHIFIER_H_