| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 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 PDF_PDFIUM_PDFIUM_PAGE_H_ | 5 #ifndef PDF_PDFIUM_PDFIUM_PAGE_H_ |
| 6 #define PDF_PDFIUM_PDFIUM_PAGE_H_ | 6 #define PDF_PDFIUM_PDFIUM_PAGE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
| 12 #include "ppapi/cpp/rect.h" | 12 #include "ppapi/cpp/rect.h" |
| 13 #include "third_party/pdfium/fpdfsdk/include/fpdfdoc.h" | 13 #include "third_party/pdfium/public/fpdf_doc.h" |
| 14 #include "third_party/pdfium/fpdfsdk/include/fpdfformfill.h" | 14 #include "third_party/pdfium/public/fpdf_formfill.h" |
| 15 #include "third_party/pdfium/fpdfsdk/include/fpdftext.h" | 15 #include "third_party/pdfium/public/fpdf_text.h" |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 class Value; | 18 class Value; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace chrome_pdf { | 21 namespace chrome_pdf { |
| 22 | 22 |
| 23 class PDFiumEngine; | 23 class PDFiumEngine; |
| 24 | 24 |
| 25 // Wrapper around a page from the document. | 25 // Wrapper around a page from the document. |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 int loading_count_; | 137 int loading_count_; |
| 138 pp::Rect rect_; | 138 pp::Rect rect_; |
| 139 bool calculated_links_; | 139 bool calculated_links_; |
| 140 std::vector<Link> links_; | 140 std::vector<Link> links_; |
| 141 bool available_; | 141 bool available_; |
| 142 }; | 142 }; |
| 143 | 143 |
| 144 } // namespace chrome_pdf | 144 } // namespace chrome_pdf |
| 145 | 145 |
| 146 #endif // PDF_PDFIUM_PDFIUM_PAGE_H_ | 146 #endif // PDF_PDFIUM_PDFIUM_PAGE_H_ |
| OLD | NEW |