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 "fpdfsdk/javascript/cjs_runtime.h" | 7 #include "fpdfsdk/javascript/cjs_runtime.h" |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 | 10 |
11 #include "fpdfsdk/include/cpdfsdk_environment.h" | 11 #include "fpdfsdk/cpdfsdk_environment.h" |
12 #include "fpdfsdk/javascript/Annot.h" | 12 #include "fpdfsdk/javascript/Annot.h" |
13 #include "fpdfsdk/javascript/Consts.h" | 13 #include "fpdfsdk/javascript/Consts.h" |
14 #include "fpdfsdk/javascript/Document.h" | 14 #include "fpdfsdk/javascript/Document.h" |
15 #include "fpdfsdk/javascript/Field.h" | 15 #include "fpdfsdk/javascript/Field.h" |
16 #include "fpdfsdk/javascript/Icon.h" | 16 #include "fpdfsdk/javascript/Icon.h" |
17 #include "fpdfsdk/javascript/JS_Define.h" | 17 #include "fpdfsdk/javascript/JS_Define.h" |
18 #include "fpdfsdk/javascript/JS_EventHandler.h" | 18 #include "fpdfsdk/javascript/JS_EventHandler.h" |
19 #include "fpdfsdk/javascript/JS_GlobalData.h" | 19 #include "fpdfsdk/javascript/JS_GlobalData.h" |
20 #include "fpdfsdk/javascript/JS_Object.h" | 20 #include "fpdfsdk/javascript/JS_Object.h" |
21 #include "fpdfsdk/javascript/JS_Value.h" | 21 #include "fpdfsdk/javascript/JS_Value.h" |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 // v8::Local<v8::Context>::New(GetIsolate(), m_context); | 305 // v8::Local<v8::Context>::New(GetIsolate(), m_context); |
306 v8::Local<v8::Value> propvalue = | 306 v8::Local<v8::Value> propvalue = |
307 v8::Local<v8::Value>::New(GetIsolate(), pValue->DirectGetValue()); | 307 v8::Local<v8::Value>::New(GetIsolate(), pValue->DirectGetValue()); |
308 context->Global()->Set( | 308 context->Global()->Set( |
309 v8::String::NewFromUtf8(pIsolate, name, v8::String::kNormalString, | 309 v8::String::NewFromUtf8(pIsolate, name, v8::String::kNormalString, |
310 utf8Name.GetLength()), | 310 utf8Name.GetLength()), |
311 propvalue); | 311 propvalue); |
312 return TRUE; | 312 return TRUE; |
313 } | 313 } |
314 #endif | 314 #endif |
OLD | NEW |