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

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

Issue 1287193005: Use override in more classes in fpdfsdk/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: nits, rebase Created 5 years, 4 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/include/javascript/Consts.h ('k') | fpdfsdk/include/javascript/Field.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 #ifndef FPDFSDK_INCLUDE_JAVASCRIPT_DOCUMENT_H_ 7 #ifndef FPDFSDK_INCLUDE_JAVASCRIPT_DOCUMENT_H_
8 #define FPDFSDK_INCLUDE_JAVASCRIPT_DOCUMENT_H_ 8 #define FPDFSDK_INCLUDE_JAVASCRIPT_DOCUMENT_H_
9 9
10 #include "JS_Define.h" 10 #include "JS_Define.h"
11 11
12 class PrintParamsObj : public CJS_EmbedObj { 12 class PrintParamsObj : public CJS_EmbedObj {
13 public: 13 public:
14 PrintParamsObj(CJS_Object* pJSObject); 14 PrintParamsObj(CJS_Object* pJSObject);
15 virtual ~PrintParamsObj() {} 15 ~PrintParamsObj() override {}
16 16
17 public: 17 public:
18 FX_BOOL bUI; 18 FX_BOOL bUI;
19 int nStart; 19 int nStart;
20 int nEnd; 20 int nEnd;
21 FX_BOOL bSilent; 21 FX_BOOL bSilent;
22 FX_BOOL bShrinkToFit; 22 FX_BOOL bShrinkToFit;
23 FX_BOOL bPrintAsImage; 23 FX_BOOL bPrintAsImage;
24 FX_BOOL bReverse; 24 FX_BOOL bReverse;
25 FX_BOOL bAnnotations; 25 FX_BOOL bAnnotations;
26 }; 26 };
27 27
28 class CJS_PrintParamsObj : public CJS_Object { 28 class CJS_PrintParamsObj : public CJS_Object {
29 public: 29 public:
30 CJS_PrintParamsObj(JSFXObject pObject) : CJS_Object(pObject) {} 30 CJS_PrintParamsObj(JSFXObject pObject) : CJS_Object(pObject) {}
31 virtual ~CJS_PrintParamsObj() {} 31 ~CJS_PrintParamsObj() override {}
32 32
33 DECLARE_JS_CLASS(CJS_PrintParamsObj); 33 DECLARE_JS_CLASS(CJS_PrintParamsObj);
34 }; 34 };
35 35
36 class Icon; 36 class Icon;
37 class Field; 37 class Field;
38 38
39 struct IconElement { 39 struct IconElement {
40 IconElement() : IconName(L""), NextIcon(NULL), IconStream(NULL) {} 40 IconElement() : IconName(L""), NextIcon(NULL), IconStream(NULL) {}
41 virtual ~IconElement() {} 41 virtual ~IconElement() {}
(...skipping 20 matching lines...) Expand all
62 int m_iLength; 62 int m_iLength;
63 }; 63 };
64 64
65 struct CJS_DelayData; 65 struct CJS_DelayData;
66 struct CJS_DelayAnnot; 66 struct CJS_DelayAnnot;
67 struct CJS_AnnotObj; 67 struct CJS_AnnotObj;
68 68
69 class Document : public CJS_EmbedObj { 69 class Document : public CJS_EmbedObj {
70 public: 70 public:
71 Document(CJS_Object* pJSObject); 71 Document(CJS_Object* pJSObject);
72 virtual ~Document(); 72 ~Document() override;
73 73
74 public: 74 public:
75 FX_BOOL ADBE(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); 75 FX_BOOL ADBE(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
76 FX_BOOL author(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); 76 FX_BOOL author(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
77 FX_BOOL baseURL(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); 77 FX_BOOL baseURL(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
78 FX_BOOL bookmarkRoot(IFXJS_Context* cc, 78 FX_BOOL bookmarkRoot(IFXJS_Context* cc,
79 CJS_PropValue& vp, 79 CJS_PropValue& vp,
80 CFX_WideString& sError); 80 CFX_WideString& sError);
81 FX_BOOL calculate(IFXJS_Context* cc, 81 FX_BOOL calculate(IFXJS_Context* cc,
82 CJS_PropValue& vp, 82 CJS_PropValue& vp,
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 IconTree* m_pIconTree; 315 IconTree* m_pIconTree;
316 CPDFSDK_Document* m_pDocument; 316 CPDFSDK_Document* m_pDocument;
317 CFX_WideString m_cwBaseURL; 317 CFX_WideString m_cwBaseURL;
318 bool m_bDelay; 318 bool m_bDelay;
319 CFX_ArrayTemplate<CJS_DelayData*> m_DelayData; 319 CFX_ArrayTemplate<CJS_DelayData*> m_DelayData;
320 CFX_ArrayTemplate<CJS_AnnotObj*> m_DelayAnnotData; 320 CFX_ArrayTemplate<CJS_AnnotObj*> m_DelayAnnotData;
321 }; 321 };
322 322
323 class CJS_Document : public CJS_Object { 323 class CJS_Document : public CJS_Object {
324 public: 324 public:
325 CJS_Document(JSFXObject pObject) : CJS_Object(pObject){}; 325 explicit CJS_Document(JSFXObject pObject) : CJS_Object(pObject) {}
326 virtual ~CJS_Document(){}; 326 ~CJS_Document() override {}
327 327
328 virtual FX_BOOL InitInstance(IFXJS_Context* cc); 328 // CJS_Object
329 FX_BOOL InitInstance(IFXJS_Context* cc) override;
329 330
330 DECLARE_JS_CLASS(CJS_Document); 331 DECLARE_JS_CLASS(CJS_Document);
331 332
332 JS_STATIC_PROP(ADBE, Document); 333 JS_STATIC_PROP(ADBE, Document);
333 JS_STATIC_PROP(author, Document); 334 JS_STATIC_PROP(author, Document);
334 JS_STATIC_PROP(baseURL, Document); 335 JS_STATIC_PROP(baseURL, Document);
335 JS_STATIC_PROP(bookmarkRoot, Document); 336 JS_STATIC_PROP(bookmarkRoot, Document);
336 JS_STATIC_PROP(calculate, Document); 337 JS_STATIC_PROP(calculate, Document);
337 JS_STATIC_PROP(Collab, Document); 338 JS_STATIC_PROP(Collab, Document);
338 JS_STATIC_PROP(creationDate, Document); 339 JS_STATIC_PROP(creationDate, Document);
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 JS_STATIC_METHOD(removeField, Document); 398 JS_STATIC_METHOD(removeField, Document);
398 JS_STATIC_METHOD(replacePages, Document); 399 JS_STATIC_METHOD(replacePages, Document);
399 JS_STATIC_METHOD(removeIcon, Document); 400 JS_STATIC_METHOD(removeIcon, Document);
400 JS_STATIC_METHOD(resetForm, Document); 401 JS_STATIC_METHOD(resetForm, Document);
401 JS_STATIC_METHOD(saveAs, Document); 402 JS_STATIC_METHOD(saveAs, Document);
402 JS_STATIC_METHOD(submitForm, Document); 403 JS_STATIC_METHOD(submitForm, Document);
403 JS_STATIC_METHOD(mailDoc, Document); 404 JS_STATIC_METHOD(mailDoc, Document);
404 }; 405 };
405 406
406 #endif // FPDFSDK_INCLUDE_JAVASCRIPT_DOCUMENT_H_ 407 #endif // FPDFSDK_INCLUDE_JAVASCRIPT_DOCUMENT_H_
OLDNEW
« no previous file with comments | « fpdfsdk/include/javascript/Consts.h ('k') | fpdfsdk/include/javascript/Field.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698