summaryrefslogtreecommitdiff
path: root/fxjs/xfa/cjx_layoutpseudomodel.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-07-24 19:07:35 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-07-24 19:07:35 +0000
commit315f94a0961792ec08428c94105caf3d8637acd1 (patch)
treed5eac0937ce46592da16a9317337f291d6263bff /fxjs/xfa/cjx_layoutpseudomodel.h
parentc9f1234b1982eb7ec8a5254195574e88bee54703 (diff)
downloadpdfium-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_layoutpseudomodel.h')
-rw-r--r--fxjs/xfa/cjx_layoutpseudomodel.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/fxjs/xfa/cjx_layoutpseudomodel.h b/fxjs/xfa/cjx_layoutpseudomodel.h
index b57c80cd62..3d14b8570a 100644
--- a/fxjs/xfa/cjx_layoutpseudomodel.h
+++ b/fxjs/xfa/cjx_layoutpseudomodel.h
@@ -9,7 +9,7 @@
#include <vector>
-#include "fxjs/cjx_define.h"
+#include "fxjs/jse_define.h"
#include "fxjs/xfa/cjx_object.h"
enum XFA_LAYOUTMODEL_HWXY {
@@ -29,27 +29,27 @@ class CJX_LayoutPseudoModel : public CJX_Object {
explicit CJX_LayoutPseudoModel(CScript_LayoutPseudoModel* model);
~CJX_LayoutPseudoModel() override;
- JS_METHOD(absPage, CJX_LayoutPseudoModel);
- JS_METHOD(absPageCount, CJX_LayoutPseudoModel);
- JS_METHOD(absPageCountInBatch, CJX_LayoutPseudoModel);
- JS_METHOD(absPageInBatch, CJX_LayoutPseudoModel);
- JS_METHOD(absPageSpan, CJX_LayoutPseudoModel);
- JS_METHOD(h, CJX_LayoutPseudoModel);
- JS_METHOD(page, CJX_LayoutPseudoModel);
- JS_METHOD(pageContent, CJX_LayoutPseudoModel);
- JS_METHOD(pageCount, CJX_LayoutPseudoModel);
- JS_METHOD(pageSpan, CJX_LayoutPseudoModel);
- JS_METHOD(relayout, CJX_LayoutPseudoModel);
- JS_METHOD(relayoutPageArea, CJX_LayoutPseudoModel);
- JS_METHOD(sheet, CJX_LayoutPseudoModel);
- JS_METHOD(sheetCount, CJX_LayoutPseudoModel);
- JS_METHOD(sheetCountInBatch, CJX_LayoutPseudoModel);
- JS_METHOD(sheetInBatch, CJX_LayoutPseudoModel);
- JS_METHOD(w, CJX_LayoutPseudoModel);
- JS_METHOD(x, CJX_LayoutPseudoModel);
- JS_METHOD(y, CJX_LayoutPseudoModel);
+ JSE_METHOD(absPage, CJX_LayoutPseudoModel);
+ JSE_METHOD(absPageCount, CJX_LayoutPseudoModel);
+ JSE_METHOD(absPageCountInBatch, CJX_LayoutPseudoModel);
+ JSE_METHOD(absPageInBatch, CJX_LayoutPseudoModel);
+ JSE_METHOD(absPageSpan, CJX_LayoutPseudoModel);
+ JSE_METHOD(h, CJX_LayoutPseudoModel);
+ JSE_METHOD(page, CJX_LayoutPseudoModel);
+ JSE_METHOD(pageContent, CJX_LayoutPseudoModel);
+ JSE_METHOD(pageCount, CJX_LayoutPseudoModel);
+ JSE_METHOD(pageSpan, CJX_LayoutPseudoModel);
+ JSE_METHOD(relayout, CJX_LayoutPseudoModel);
+ JSE_METHOD(relayoutPageArea, CJX_LayoutPseudoModel);
+ JSE_METHOD(sheet, CJX_LayoutPseudoModel);
+ JSE_METHOD(sheetCount, CJX_LayoutPseudoModel);
+ JSE_METHOD(sheetCountInBatch, CJX_LayoutPseudoModel);
+ JSE_METHOD(sheetInBatch, CJX_LayoutPseudoModel);
+ JSE_METHOD(w, CJX_LayoutPseudoModel);
+ JSE_METHOD(x, CJX_LayoutPseudoModel);
+ JSE_METHOD(y, CJX_LayoutPseudoModel);
- JS_PROP(ready);
+ JSE_PROP(ready);
private:
CJS_Return NumberedPageCount(CFX_V8* runtime, bool bNumbered);