summaryrefslogtreecommitdiff
path: root/xfa/fxjse/class.h
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-05-26 12:39:34 -0700
committerCommit bot <commit-bot@chromium.org>2016-05-26 12:39:34 -0700
commite3b2a4eca66e357df663a6f7464ef9af5e85883f (patch)
treeb4d591b227e69f9652605fa941611c651e8d6fa4 /xfa/fxjse/class.h
parent60607c3baaf52574cab748a97c213e447c9108c0 (diff)
downloadpdfium-e3b2a4eca66e357df663a6f7464ef9af5e85883f.tar.xz
Rename FXJSE_CLASS to avoid confusion with CFXJSE_CLASS
BUG= Review-Url: https://codereview.chromium.org/2010013003
Diffstat (limited to 'xfa/fxjse/class.h')
-rw-r--r--xfa/fxjse/class.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxjse/class.h b/xfa/fxjse/class.h
index db52979589..344adf4a47 100644
--- a/xfa/fxjse/class.h
+++ b/xfa/fxjse/class.h
@@ -25,18 +25,18 @@ class CFXJSE_Class {
public:
static CFXJSE_Class* Create(CFXJSE_Context* pContext,
- const FXJSE_CLASS* lpClassDefintion,
+ const FXJSE_CLASS_DESCRIPTOR* lpClassDefintion,
FX_BOOL bIsJSGlobal = FALSE);
static CFXJSE_Class* GetClassFromContext(CFXJSE_Context* pContext,
const CFX_ByteStringC& szName);
static void SetUpNamedPropHandler(
v8::Isolate* pIsolate,
v8::Local<v8::ObjectTemplate>& hObjectTemplate,
- const FXJSE_CLASS* lpClassDefinition);
+ const FXJSE_CLASS_DESCRIPTOR* lpClassDefinition);
protected:
CFX_ByteString m_szClassName;
- const FXJSE_CLASS* m_lpClassDefinition;
+ const FXJSE_CLASS_DESCRIPTOR* m_lpClassDefinition;
CFXJSE_Context* m_pContext;
v8::Global<v8::FunctionTemplate> m_hTemplate;
friend class CFXJSE_Context;