| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium 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 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "fpdfsdk/javascript/Document.h" | 7 #include "fpdfsdk/javascript/Document.h" |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "core/fpdfapi/font/cpdf_font.h" | 12 #include "core/fpdfapi/font/cpdf_font.h" |
| 13 #include "core/fpdfapi/fpdf_page/cpdf_page.h" | |
| 14 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" | 13 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" |
| 15 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" | 14 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" |
| 16 #include "core/fpdfapi/fpdf_parser/fpdf_parser_decode.h" | 15 #include "core/fpdfapi/fpdf_parser/fpdf_parser_decode.h" |
| 16 #include "core/fpdfapi/page/cpdf_page.h" |
| 17 #include "core/fpdfdoc/cpdf_interform.h" | 17 #include "core/fpdfdoc/cpdf_interform.h" |
| 18 #include "core/fpdfdoc/cpdf_nametree.h" | 18 #include "core/fpdfdoc/cpdf_nametree.h" |
| 19 #include "fpdfsdk/cpdfsdk_annotiterator.h" | 19 #include "fpdfsdk/cpdfsdk_annotiterator.h" |
| 20 #include "fpdfsdk/cpdfsdk_document.h" | 20 #include "fpdfsdk/cpdfsdk_document.h" |
| 21 #include "fpdfsdk/cpdfsdk_environment.h" | 21 #include "fpdfsdk/cpdfsdk_environment.h" |
| 22 #include "fpdfsdk/cpdfsdk_interform.h" | 22 #include "fpdfsdk/cpdfsdk_interform.h" |
| 23 #include "fpdfsdk/cpdfsdk_pageview.h" | 23 #include "fpdfsdk/cpdfsdk_pageview.h" |
| 24 #include "fpdfsdk/cpdfsdk_widget.h" | 24 #include "fpdfsdk/cpdfsdk_widget.h" |
| 25 #include "fpdfsdk/javascript/Annot.h" | 25 #include "fpdfsdk/javascript/Annot.h" |
| 26 #include "fpdfsdk/javascript/Field.h" | 26 #include "fpdfsdk/javascript/Field.h" |
| (...skipping 1692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1719 } | 1719 } |
| 1720 } | 1720 } |
| 1721 | 1721 |
| 1722 for (const auto& pData : DelayDataForFieldAndControlIndex) | 1722 for (const auto& pData : DelayDataForFieldAndControlIndex) |
| 1723 Field::DoDelay(m_pDocument.Get(), pData.get()); | 1723 Field::DoDelay(m_pDocument.Get(), pData.get()); |
| 1724 } | 1724 } |
| 1725 | 1725 |
| 1726 CJS_Document* Document::GetCJSDoc() const { | 1726 CJS_Document* Document::GetCJSDoc() const { |
| 1727 return static_cast<CJS_Document*>(m_pJSObject); | 1727 return static_cast<CJS_Document*>(m_pJSObject); |
| 1728 } | 1728 } |
| OLD | NEW |