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_font.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_font.h')
-rw-r--r-- | fxjs/xfa/cjx_font.h | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/fxjs/xfa/cjx_font.h b/fxjs/xfa/cjx_font.h index 65b40e4508..a5a13560b6 100644 --- a/fxjs/xfa/cjx_font.h +++ b/fxjs/xfa/cjx_font.h @@ -7,6 +7,7 @@ #ifndef FXJS_XFA_CJX_FONT_H_ #define FXJS_XFA_CJX_FONT_H_ +#include "fxjs/jse_define.h" #include "fxjs/xfa/cjx_node.h" class CXFA_Font; @@ -16,23 +17,23 @@ class CJX_Font : public CJX_Node { explicit CJX_Font(CXFA_Font* node); ~CJX_Font() override; - JS_PROP(baselineShift); - JS_PROP(fontHorizontalScale); - JS_PROP(fontVerticalScale); - JS_PROP(kerningMode); - JS_PROP(letterSpacing); - JS_PROP(lineThrough); - JS_PROP(lineThroughPeriod); - JS_PROP(overline); - JS_PROP(overlinePeriod); - JS_PROP(posture); - JS_PROP(size); - JS_PROP(typeface); - JS_PROP(underline); - JS_PROP(underlinePeriod); - JS_PROP(use); - JS_PROP(usehref); - JS_PROP(weight); + JSE_PROP(baselineShift); + JSE_PROP(fontHorizontalScale); + JSE_PROP(fontVerticalScale); + JSE_PROP(kerningMode); + JSE_PROP(letterSpacing); + JSE_PROP(lineThrough); + JSE_PROP(lineThroughPeriod); + JSE_PROP(overline); + JSE_PROP(overlinePeriod); + JSE_PROP(posture); + JSE_PROP(size); + JSE_PROP(typeface); + JSE_PROP(underline); + JSE_PROP(underlinePeriod); + JSE_PROP(use); + JSE_PROP(usehref); + JSE_PROP(weight); }; #endif // FXJS_XFA_CJX_FONT_H_ |