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 "app.h" | 7 #include "app.h" |
8 | 8 |
9 #include "../../../third_party/base/nonstd_unique_ptr.h" | |
10 #include "../../include/fsdk_mgr.h" // For CPDFDoc_Environment. | 9 #include "../../include/fsdk_mgr.h" // For CPDFDoc_Environment. |
11 #include "../../include/javascript/IJavaScript.h" | 10 #include "../../include/javascript/IJavaScript.h" |
12 #include "Document.h" | 11 #include "Document.h" |
13 #include "JS_Context.h" | 12 #include "JS_Context.h" |
14 #include "JS_Define.h" | 13 #include "JS_Define.h" |
15 #include "JS_EventHandler.h" | 14 #include "JS_EventHandler.h" |
16 #include "JS_Object.h" | 15 #include "JS_Object.h" |
17 #include "JS_Runtime.h" | 16 #include "JS_Runtime.h" |
18 #include "JS_Value.h" | 17 #include "JS_Value.h" |
19 #include "resource.h" | 18 #include "resource.h" |
| 19 #include "third_party/base/nonstd_unique_ptr.h" |
20 | 20 |
21 BEGIN_JS_STATIC_CONST(CJS_TimerObj) | 21 BEGIN_JS_STATIC_CONST(CJS_TimerObj) |
22 END_JS_STATIC_CONST() | 22 END_JS_STATIC_CONST() |
23 | 23 |
24 BEGIN_JS_STATIC_PROP(CJS_TimerObj) | 24 BEGIN_JS_STATIC_PROP(CJS_TimerObj) |
25 END_JS_STATIC_PROP() | 25 END_JS_STATIC_PROP() |
26 | 26 |
27 BEGIN_JS_STATIC_METHOD(CJS_TimerObj) | 27 BEGIN_JS_STATIC_METHOD(CJS_TimerObj) |
28 END_JS_STATIC_METHOD() | 28 END_JS_STATIC_METHOD() |
29 | 29 |
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
801 FX_BOOL app::media(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) { | 801 FX_BOOL app::media(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) { |
802 return FALSE; | 802 return FALSE; |
803 } | 803 } |
804 | 804 |
805 FX_BOOL app::execDialog(IJS_Context* cc, | 805 FX_BOOL app::execDialog(IJS_Context* cc, |
806 const CJS_Parameters& params, | 806 const CJS_Parameters& params, |
807 CJS_Value& vRet, | 807 CJS_Value& vRet, |
808 CFX_WideString& sError) { | 808 CFX_WideString& sError) { |
809 return TRUE; | 809 return TRUE; |
810 } | 810 } |
OLD | NEW |