Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Unified Diff: pdf/pdf.h

Issue 294793003: Add the pdf plugin's source in src\pdf. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: review comments and sync past DEPS roll to fix gyp Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pdf/paint_manager.cc ('k') | pdf/pdf.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pdf/pdf.h
===================================================================
--- pdf/pdf.h (revision 0)
+++ pdf/pdf.h (revision 0)
@@ -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();
tfarina 2014/05/20 20:33:08 Are we going to work on making this code run under
+ virtual pp::Instance* CreateInstance(PP_Instance instance);
+};
+
+} // namespace chrome_pdf
+
+#endif // PDF_PDF_H_
Property changes on: pdf\pdf.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « pdf/paint_manager.cc ('k') | pdf/pdf.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698