#include "pdf/pdfium/pdfium_unsupported_features.h"
#include "base/check.h"
#include "pdf/pdfium/pdfium_engine.h"
#include "third_party/pdfium/public/fpdf_ext.h"
namespace chrome_pdf {
namespace {
bool g_engine_available = …;
PDFiumEngine* g_engine_for_unsupported = …;
void Unsupported_Handler(UNSUPPORT_INFO*, int type) { … }
UNSUPPORT_INFO g_unsupported_info = …;
}
void InitializeUnsupportedFeaturesHandler() { … }
ScopedUnsupportedFeature::ScopedUnsupportedFeature(PDFiumEngine* engine)
: … { … }
ScopedUnsupportedFeature::ScopedUnsupportedFeature(NoEngine no_engine)
: … { … }
ScopedUnsupportedFeature::~ScopedUnsupportedFeature() { … }
}