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

Side by Side Diff: fpdfsdk/javascript/Document.h

Issue 2335243002: Split fsdk_mgr files apart. (Closed)
Patch Set: Sort headers Created 4 years, 3 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
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 #ifndef FPDFSDK_JAVASCRIPT_DOCUMENT_H_ 7 #ifndef FPDFSDK_JAVASCRIPT_DOCUMENT_H_
8 #define FPDFSDK_JAVASCRIPT_DOCUMENT_H_ 8 #define FPDFSDK_JAVASCRIPT_DOCUMENT_H_
9 9
10 #include <list> 10 #include <list>
11 #include <memory> 11 #include <memory>
12 #include <vector> 12 #include <vector>
13 13
14 #include "core/fpdfapi/fpdf_page/include/cpdf_pageobject.h" 14 #include "core/fpdfapi/fpdf_page/include/cpdf_pageobject.h"
15 #include "core/fpdfapi/fpdf_page/include/cpdf_textobject.h" 15 #include "core/fpdfapi/fpdf_page/include/cpdf_textobject.h"
16 #include "fpdfsdk/include/fsdk_mgr.h" 16 #include "fpdfsdk/include/cpdfsdk_document.h"
17 #include "fpdfsdk/javascript/JS_Define.h" 17 #include "fpdfsdk/javascript/JS_Define.h"
18 18
19 class PrintParamsObj : public CJS_EmbedObj { 19 class PrintParamsObj : public CJS_EmbedObj {
20 public: 20 public:
21 PrintParamsObj(CJS_Object* pJSObject); 21 PrintParamsObj(CJS_Object* pJSObject);
22 ~PrintParamsObj() override {} 22 ~PrintParamsObj() override {}
23 23
24 public: 24 public:
25 FX_BOOL bUI; 25 FX_BOOL bUI;
26 int nStart; 26 int nStart;
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 JS_STATIC_METHOD(replacePages, Document); 374 JS_STATIC_METHOD(replacePages, Document);
375 JS_STATIC_METHOD(removeIcon, Document); 375 JS_STATIC_METHOD(removeIcon, Document);
376 JS_STATIC_METHOD(resetForm, Document); 376 JS_STATIC_METHOD(resetForm, Document);
377 JS_STATIC_METHOD(saveAs, Document); 377 JS_STATIC_METHOD(saveAs, Document);
378 JS_STATIC_METHOD(submitForm, Document); 378 JS_STATIC_METHOD(submitForm, Document);
379 JS_STATIC_METHOD(syncAnnotScan, Document); 379 JS_STATIC_METHOD(syncAnnotScan, Document);
380 JS_STATIC_METHOD(mailDoc, Document); 380 JS_STATIC_METHOD(mailDoc, Document);
381 }; 381 };
382 382
383 #endif // FPDFSDK_JAVASCRIPT_DOCUMENT_H_ 383 #endif // FPDFSDK_JAVASCRIPT_DOCUMENT_H_
OLDNEW
« BUILD.gn ('K') | « fpdfsdk/include/fsdk_mgr.h ('k') | fpdfsdk/javascript/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698