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

Side by Side Diff: fpdfsdk/javascript/Document.cpp

Issue 1805663002: Move core/include/fpdfapi/fpdf_page.h to correct locations. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « fpdfsdk/fxedit/fxet_pageobjs.cpp ('k') | fpdfsdk/javascript/Field.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <vector> 9 #include <vector>
10 10
11 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h"
11 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" 12 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h"
12 #include "core/include/fpdfapi/fpdf_page.h"
13 #include "fpdfsdk/include/fsdk_mgr.h" 13 #include "fpdfsdk/include/fsdk_mgr.h"
14 #include "fpdfsdk/include/javascript/IJavaScript.h" 14 #include "fpdfsdk/include/javascript/IJavaScript.h"
15 #include "fpdfsdk/javascript/Field.h" 15 #include "fpdfsdk/javascript/Field.h"
16 #include "fpdfsdk/javascript/Icon.h" 16 #include "fpdfsdk/javascript/Icon.h"
17 #include "fpdfsdk/javascript/JS_Context.h" 17 #include "fpdfsdk/javascript/JS_Context.h"
18 #include "fpdfsdk/javascript/JS_Define.h" 18 #include "fpdfsdk/javascript/JS_Define.h"
19 #include "fpdfsdk/javascript/JS_EventHandler.h" 19 #include "fpdfsdk/javascript/JS_EventHandler.h"
20 #include "fpdfsdk/javascript/JS_Object.h" 20 #include "fpdfsdk/javascript/JS_Object.h"
21 #include "fpdfsdk/javascript/JS_Runtime.h" 21 #include "fpdfsdk/javascript/JS_Runtime.h"
22 #include "fpdfsdk/javascript/JS_Value.h" 22 #include "fpdfsdk/javascript/JS_Value.h"
(...skipping 1572 matching lines...) Expand 10 before | Expand all | Expand 10 after
1595 } 1595 }
1596 } 1596 }
1597 1597
1598 for (const auto& pData : DelayDataForFieldAndControlIndex) 1598 for (const auto& pData : DelayDataForFieldAndControlIndex)
1599 Field::DoDelay(m_pDocument, pData.get()); 1599 Field::DoDelay(m_pDocument, pData.get());
1600 } 1600 }
1601 1601
1602 CJS_Document* Document::GetCJSDoc() const { 1602 CJS_Document* Document::GetCJSDoc() const {
1603 return static_cast<CJS_Document*>(m_pJSObject); 1603 return static_cast<CJS_Document*>(m_pJSObject);
1604 } 1604 }
OLDNEW
« no previous file with comments | « fpdfsdk/fxedit/fxet_pageobjs.cpp ('k') | fpdfsdk/javascript/Field.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698