diff options
author | tsepez <tsepez@chromium.org> | 2016-05-26 12:39:34 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-26 12:39:34 -0700 |
commit | e3b2a4eca66e357df663a6f7464ef9af5e85883f (patch) | |
tree | b4d591b227e69f9652605fa941611c651e8d6fa4 /xfa/fxjse/context.h | |
parent | 60607c3baaf52574cab748a97c213e447c9108c0 (diff) | |
download | pdfium-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/context.h')
-rw-r--r-- | xfa/fxjse/context.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/xfa/fxjse/context.h b/xfa/fxjse/context.h index 38338311e3..96b93faffd 100644 --- a/xfa/fxjse/context.h +++ b/xfa/fxjse/context.h @@ -16,13 +16,14 @@ class CFXJSE_Class; class CFXJSE_Value; -struct FXJSE_CLASS; +struct FXJSE_CLASS_DESCRIPTOR; class CFXJSE_Context { public: - static CFXJSE_Context* Create(v8::Isolate* pIsolate, - const FXJSE_CLASS* lpGlobalClass = nullptr, - void* lpGlobalObject = nullptr); + static CFXJSE_Context* Create( + v8::Isolate* pIsolate, + const FXJSE_CLASS_DESCRIPTOR* lpGlobalClass = nullptr, + void* lpGlobalObject = nullptr); ~CFXJSE_Context(); V8_INLINE v8::Isolate* GetRuntime(void) { return m_pIsolate; } |