| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_PDF_RENDERER_PEPPER_PDF_HOST_H_ | 5 #ifndef COMPONENTS_PDF_RENDERER_PEPPER_PDF_HOST_H_ |
| 6 #define COMPONENTS_PDF_RENDERER_PEPPER_PDF_HOST_H_ | 6 #define COMPONENTS_PDF_RENDERER_PEPPER_PDF_HOST_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 | 11 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/macros.h" |
| 12 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 13 #include "ipc/ipc_platform_file.h" | 15 #include "ipc/ipc_platform_file.h" |
| 14 #include "ppapi/c/ppb_image_data.h" | 16 #include "ppapi/c/ppb_image_data.h" |
| 15 #include "ppapi/c/private/ppb_pdf.h" | 17 #include "ppapi/c/private/ppb_pdf.h" |
| 16 #include "ppapi/host/resource_host.h" | 18 #include "ppapi/host/resource_host.h" |
| 17 #include "ppapi/proxy/serialized_structs.h" | 19 #include "ppapi/proxy/serialized_structs.h" |
| 18 | 20 |
| 19 struct PP_ImageDataDesc; | 21 struct PP_ImageDataDesc; |
| 20 struct PP_Size; | 22 struct PP_Size; |
| 21 class SkBitmap; | 23 class SkBitmap; |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 const std::string& url); | 91 const std::string& url); |
| 90 | 92 |
| 91 content::RendererPpapiHost* host_; | 93 content::RendererPpapiHost* host_; |
| 92 | 94 |
| 93 DISALLOW_COPY_AND_ASSIGN(PepperPDFHost); | 95 DISALLOW_COPY_AND_ASSIGN(PepperPDFHost); |
| 94 }; | 96 }; |
| 95 | 97 |
| 96 } // namespace pdf | 98 } // namespace pdf |
| 97 | 99 |
| 98 #endif // COMPONENTS_PDF_RENDERER_PEPPER_PDF_HOST_H_ | 100 #endif // COMPONENTS_PDF_RENDERER_PEPPER_PDF_HOST_H_ |
| OLD | NEW |