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();
tfarina
2014/05/20 20:33:08
Are we going to work on making this code run under
Are we going to work on making this code run under chromium-style clang plugin?
We exclude this directory in tools/clang/plugins/ChromeClassTester.cpp:161.
It would have warned to add OVERRIDE here.
Issue 294793003: Add the pdf plugin's source in src\pdf.
(Closed)
Created 6 years, 7 months ago by jam
Modified 6 years, 7 months ago
Reviewers: Lei Zhang, darin (slow to review)
Base URL: svn://svn.chromium.org/chrome/trunk/src/
Comments: 14