diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-07-24 19:07:35 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-24 19:07:35 +0000 |
commit | 315f94a0961792ec08428c94105caf3d8637acd1 (patch) | |
tree | d5eac0937ce46592da16a9317337f291d6263bff /fxjs/xfa/cjx_barcode.h | |
parent | c9f1234b1982eb7ec8a5254195574e88bee54703 (diff) | |
download | pdfium-315f94a0961792ec08428c94105caf3d8637acd1.tar.xz |
Rename JS_{METHOD,PROP} to JSE_{METHOD,PROP}
Because they are too easily confused with non-XFA JS_STATIC_PROP despite
being on the XFA side. The JSE_ prefix mirrors the fxjs/fxjse split
("e" presumably standing for "extension" or some such) between the
non-xfa/xfa V8 adapter layer.
Rename fxjs/{cjx_define.h => jse_define.h}, since there aren't any
symbols starting with |CJX| in it.
Fix some IWYU for jse_define.h
No functional changes.
Change-Id: I6a0b2b6fe6ef1b564b0bfa2fa7ba317a0cea0953
Reviewed-on: https://pdfium-review.googlesource.com/38730
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/xfa/cjx_barcode.h')
-rw-r--r-- | fxjs/xfa/cjx_barcode.h | 41 |
1 files changed, 21 insertions, 20 deletions
diff --git a/fxjs/xfa/cjx_barcode.h b/fxjs/xfa/cjx_barcode.h index f5d88816bd..3901bd6b63 100644 --- a/fxjs/xfa/cjx_barcode.h +++ b/fxjs/xfa/cjx_barcode.h @@ -7,6 +7,7 @@ #ifndef FXJS_XFA_CJX_BARCODE_H_ #define FXJS_XFA_CJX_BARCODE_H_ +#include "fxjs/jse_define.h" #include "fxjs/xfa/cjx_node.h" class CXFA_Barcode; @@ -16,26 +17,26 @@ class CJX_Barcode : public CJX_Node { explicit CJX_Barcode(CXFA_Barcode* arc); ~CJX_Barcode() override; - JS_PROP(charEncoding); - JS_PROP(checksum); - JS_PROP(dataColumnCount); - JS_PROP(dataLength); - JS_PROP(dataPrep); - JS_PROP(dataRowCount); - JS_PROP(endChar); - JS_PROP(errorCorrectionLevel); - JS_PROP(moduleHeight); - JS_PROP(moduleWidth); - JS_PROP(printCheckDigit); - JS_PROP(rowColumnRatio); - JS_PROP(startChar); - JS_PROP(textLocation); - JS_PROP(truncate); - JS_PROP(type); - JS_PROP(upsMode); - JS_PROP(use); - JS_PROP(usehref); - JS_PROP(wideNarrowRatio); + JSE_PROP(charEncoding); + JSE_PROP(checksum); + JSE_PROP(dataColumnCount); + JSE_PROP(dataLength); + JSE_PROP(dataPrep); + JSE_PROP(dataRowCount); + JSE_PROP(endChar); + JSE_PROP(errorCorrectionLevel); + JSE_PROP(moduleHeight); + JSE_PROP(moduleWidth); + JSE_PROP(printCheckDigit); + JSE_PROP(rowColumnRatio); + JSE_PROP(startChar); + JSE_PROP(textLocation); + JSE_PROP(truncate); + JSE_PROP(type); + JSE_PROP(upsMode); + JSE_PROP(use); + JSE_PROP(usehref); + JSE_PROP(wideNarrowRatio); }; #endif // FXJS_XFA_CJX_BARCODE_H_ |