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

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

Issue 2424993002: Merge CPDFXFA_App into CPDFXFA_Document. (Closed)
Patch Set: Move check Created 4 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/fpdfxfa/cpdfxfa_document.cpp ('k') | no next file » | 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/cjs_runtime.h" 7 #include "fpdfsdk/javascript/cjs_runtime.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
(...skipping 14 matching lines...) Expand all
25 #include "fpdfsdk/javascript/color.h" 25 #include "fpdfsdk/javascript/color.h"
26 #include "fpdfsdk/javascript/console.h" 26 #include "fpdfsdk/javascript/console.h"
27 #include "fpdfsdk/javascript/event.h" 27 #include "fpdfsdk/javascript/event.h"
28 #include "fpdfsdk/javascript/global.h" 28 #include "fpdfsdk/javascript/global.h"
29 #include "fpdfsdk/javascript/report.h" 29 #include "fpdfsdk/javascript/report.h"
30 #include "fpdfsdk/javascript/util.h" 30 #include "fpdfsdk/javascript/util.h"
31 #include "public/fpdf_formfill.h" 31 #include "public/fpdf_formfill.h"
32 #include "third_party/base/stl_util.h" 32 #include "third_party/base/stl_util.h"
33 33
34 #ifdef PDF_ENABLE_XFA 34 #ifdef PDF_ENABLE_XFA
35 #include "fpdfsdk/fpdfxfa/cpdfxfa_app.h"
36 #include "fxjs/cfxjse_value.h" 35 #include "fxjs/cfxjse_value.h"
37 #endif // PDF_ENABLE_XFA 36 #endif // PDF_ENABLE_XFA
38 37
39 // static 38 // static
40 void IJS_Runtime::Initialize(unsigned int slot, void* isolate) { 39 void IJS_Runtime::Initialize(unsigned int slot, void* isolate) {
41 FXJS_Initialize(slot, reinterpret_cast<v8::Isolate*>(isolate)); 40 FXJS_Initialize(slot, reinterpret_cast<v8::Isolate*>(isolate));
42 } 41 }
43 42
44 // static 43 // static
45 void IJS_Runtime::Destroy() { 44 void IJS_Runtime::Destroy() {
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 // v8::Local<v8::Context>::New(GetIsolate(), m_context); 260 // v8::Local<v8::Context>::New(GetIsolate(), m_context);
262 v8::Local<v8::Value> propvalue = 261 v8::Local<v8::Value> propvalue =
263 v8::Local<v8::Value>::New(GetIsolate(), pValue->DirectGetValue()); 262 v8::Local<v8::Value>::New(GetIsolate(), pValue->DirectGetValue());
264 context->Global()->Set( 263 context->Global()->Set(
265 v8::String::NewFromUtf8(pIsolate, name, v8::String::kNormalString, 264 v8::String::NewFromUtf8(pIsolate, name, v8::String::kNormalString,
266 utf8Name.GetLength()), 265 utf8Name.GetLength()),
267 propvalue); 266 propvalue);
268 return TRUE; 267 return TRUE;
269 } 268 }
270 #endif 269 #endif
OLDNEW
« no previous file with comments | « fpdfsdk/fpdfxfa/cpdfxfa_document.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698