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

Side by Side Diff: xfa/fxfa/fm2js/xfa_fm2jscontext.cpp

Issue 2056663004: Move xfa/fxjse/ to fxjse/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 6 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 | « xfa/fxfa/fm2js/xfa_fm2jscontext.h ('k') | xfa/fxfa/include/fxfa_basic.h » ('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 "xfa/fxfa/fm2js/xfa_fm2jscontext.h" 7 #include "xfa/fxfa/fm2js/xfa_fm2jscontext.h"
8 8
9 #include <time.h> 9 #include <time.h>
10 10
11 #include "core/fxcrt/include/fx_ext.h" 11 #include "core/fxcrt/include/fx_ext.h"
12 #include "fxjse/include/cfxjse_arguments.h"
13 #include "fxjse/include/cfxjse_class.h"
14 #include "fxjse/include/cfxjse_value.h"
12 #include "xfa/fgas/localization/fgas_locale.h" 15 #include "xfa/fgas/localization/fgas_locale.h"
13 #include "xfa/fxfa/app/xfa_ffnotify.h" 16 #include "xfa/fxfa/app/xfa_ffnotify.h"
14 #include "xfa/fxfa/fm2js/xfa_program.h" 17 #include "xfa/fxfa/fm2js/xfa_program.h"
15 #include "xfa/fxfa/parser/xfa_document.h" 18 #include "xfa/fxfa/parser/xfa_document.h"
16 #include "xfa/fxfa/parser/xfa_localevalue.h" 19 #include "xfa/fxfa/parser/xfa_localevalue.h"
17 #include "xfa/fxfa/parser/xfa_parser.h" 20 #include "xfa/fxfa/parser/xfa_parser.h"
18 #include "xfa/fxfa/parser/xfa_parser_imp.h" 21 #include "xfa/fxfa/parser/xfa_parser_imp.h"
19 #include "xfa/fxfa/parser/xfa_script_imp.h" 22 #include "xfa/fxfa/parser/xfa_script_imp.h"
20 #include "xfa/fxjse/cfxjse_arguments.h"
21 #include "xfa/fxjse/class.h"
22 #include "xfa/fxjse/value.h"
23 23
24 namespace { 24 namespace {
25 25
26 const double kFinancialPrecision = 0.00000001; 26 const double kFinancialPrecision = 0.00000001;
27 27
28 struct XFA_FMHtmlReserveCode { 28 struct XFA_FMHtmlReserveCode {
29 uint32_t m_uCode; 29 uint32_t m_uCode;
30 const FX_WCHAR* m_htmlReserve; 30 const FX_WCHAR* m_htmlReserve;
31 }; 31 };
32 32
(...skipping 6493 matching lines...) Expand 10 before | Expand all | Expand 10 after
6526 CFX_WideString wsFormat; 6526 CFX_WideString wsFormat;
6527 pAppProvider->LoadString(iStringID, wsFormat); 6527 pAppProvider->LoadString(iStringID, wsFormat);
6528 CFX_WideString wsMessage; 6528 CFX_WideString wsMessage;
6529 va_list arg_ptr; 6529 va_list arg_ptr;
6530 va_start(arg_ptr, iStringID); 6530 va_start(arg_ptr, iStringID);
6531 wsMessage.FormatV(wsFormat.c_str(), arg_ptr); 6531 wsMessage.FormatV(wsFormat.c_str(), arg_ptr);
6532 va_end(arg_ptr); 6532 va_end(arg_ptr);
6533 FXJSE_ThrowMessage( 6533 FXJSE_ThrowMessage(
6534 FX_UTF8Encode(wsMessage.c_str(), wsMessage.GetLength()).AsStringC()); 6534 FX_UTF8Encode(wsMessage.c_str(), wsMessage.GetLength()).AsStringC());
6535 } 6535 }
OLDNEW
« no previous file with comments | « xfa/fxfa/fm2js/xfa_fm2jscontext.h ('k') | xfa/fxfa/include/fxfa_basic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698