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

Side by Side Diff: fpdfsdk/src/javascript/app.cpp

Issue 1434543003: Merge to XFA: Fix all relative includes to third_party. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Fix XFA Created 5 years, 1 month 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
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 "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 780 matching lines...) Expand 10 before | Expand all | Expand 10 after
810 FX_BOOL app::media(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) { 810 FX_BOOL app::media(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError) {
811 return FALSE; 811 return FALSE;
812 } 812 }
813 813
814 FX_BOOL app::execDialog(IJS_Context* cc, 814 FX_BOOL app::execDialog(IJS_Context* cc,
815 const CJS_Parameters& params, 815 const CJS_Parameters& params,
816 CJS_Value& vRet, 816 CJS_Value& vRet,
817 CFX_WideString& sError) { 817 CFX_WideString& sError) {
818 return TRUE; 818 return TRUE;
819 } 819 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698