Fix test disabling for ProcessUtilTest.GetAppOutputRestricted
[chromium-blink-merge.git] / pdf / pdf.h
blobd797bbbaf5288844d12e8f39f4fda163ebaed4d5
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.
5 #ifndef PDF_PDF_H_
6 #define PDF_PDF_H_
8 #include "ppapi/cpp/module.h"
10 namespace chrome_pdf {
12 class PDFModule : public pp::Module {
13 public:
14 PDFModule();
15 virtual ~PDFModule();
17 // pp::Module implementation.
18 virtual bool Init();
19 virtual pp::Instance* CreateInstance(PP_Instance instance);
22 } // namespace chrome_pdf
24 #endif // PDF_PDF_H_