• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef PDF_PDF_H_
6 #define PDF_PDF_H_
7 
8 #include "ppapi/cpp/module.h"
9 
10 namespace chrome_pdf {
11 
12 class PDFModule : public pp::Module {
13  public:
14   PDFModule();
15   virtual ~PDFModule();
16 
17   // pp::Module implementation.
18   virtual bool Init();
19   virtual pp::Instance* CreateInstance(PP_Instance instance);
20 };
21 
22 }  // namespace chrome_pdf
23 
24 #endif  // PDF_PDF_H_
25