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

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

Issue 2384503003: Move fpdfsdk/include to fpdfsdk (Closed)
Patch Set: Rebase to master Created 4 years, 2 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 | « fpdfsdk/javascript/app.cpp ('k') | fpdfsdk/pdfsdk_fieldaction.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 "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
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
OLDNEW
« no previous file with comments | « fpdfsdk/javascript/app.cpp ('k') | fpdfsdk/pdfsdk_fieldaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698