diff options
Diffstat (limited to 'xfa_test/pdf/pdf.h')
-rw-r--r-- | xfa_test/pdf/pdf.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/xfa_test/pdf/pdf.h b/xfa_test/pdf/pdf.h new file mode 100644 index 0000000000..d797bbbaf5 --- /dev/null +++ b/xfa_test/pdf/pdf.h @@ -0,0 +1,24 @@ +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef PDF_PDF_H_ +#define PDF_PDF_H_ + +#include "ppapi/cpp/module.h" + +namespace chrome_pdf { + +class PDFModule : public pp::Module { + public: + PDFModule(); + virtual ~PDFModule(); + + // pp::Module implementation. + virtual bool Init(); + virtual pp::Instance* CreateInstance(PP_Instance instance); +}; + +} // namespace chrome_pdf + +#endif // PDF_PDF_H_ |