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

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

Issue 1425153006: Fix all relative includes to third_party. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: rebase 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
« no previous file with comments | « fpdfsdk/src/javascript/JS_Runtime_Stub.cpp ('k') | fpdfsdk/src/jsapi/fxjs_v8_embeddertest.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 "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
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 }
OLDNEW
« no previous file with comments | « fpdfsdk/src/javascript/JS_Runtime_Stub.cpp ('k') | fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698